Convert 32bit PNG file to 24bit PNG file

2019-05-21 02:51发布

How to convert 32bit PNG file to 24bit PNG file using PHP.

btw I am using Codeigniter, and planning to host files at Dreamhost.

Thanks!

标签: php png png-24
1条回答
欢心
2楼-- · 2019-05-21 03:47

Give this a try:

exec('convert -depth 24 /path/to/old/image.png /path/to/new/image.png');

There is a PEAR package for ImageMagick, although making a system call also works if your hosting provider hasn't installed the PEAR package.

查看更多
登录 后发表回答