Convert 32bit PNG file to 24bit PNG file

放肆的年华 提交于 2019-12-12 10:03:27

问题


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!


回答1:


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.



来源:https://stackoverflow.com/questions/7658679/convert-32bit-png-file-to-24bit-png-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!