imagecreatefrompng函数引起的问题

       做图片缩略的时候有用到imagecreatefrompng函数。在本地window系统GD库bundled (2.0.34 compatible)执行正常。可是上传服务器上去(FreeBSD  GD库bundled (2.0.34 compatible) )执行后却is not a valid PNG file。不知道为什么会这样。可能是php本身的bug。

     上网查下了Okay, interesting – I've managed to get my image processing working by using imagemagic (the CLI util, not the pecl package). That could indicate that this might in fact be a PHP bug. shakes tiny fist at PHP

      来自http://serverfault.com/questions/42573/strange-gd-error-when-working-on-png-images-from-php-on-freebsd

     同事也给了参考url:http://hi.baidu.com/156544632/blog/item/002401eeef66bbf0b2fb95af.html 

     上面的质量都没有说解决方法,只是让人大楷了解错误的原因。

     最后实在不行,我就用Imageick类来缩略PNG图片了。

你可能感兴趣的:(PHP)