gd2没有gd稳定,虽然功能强大些。仍处于开发中

解决方案 »

  1.   

    我找到答案了,我仔细研究了一下PHP手册,发现gd2的库,要用这个“imagecreatetruecolor”
    函数才行!!!
    //以下就是这个函数,贴出来大家一起看吧!function resize_jpg($img,$w,$h){// $thumb = imagecreate ($w, $h);
     $thumb = imagecreatetruecolor ($w, $h);
     $image = ImageCreateFromJpeg($img); $imagedata = getimagesize($img);  imagecopyresized ($thumb, $image, 0, 0, 0, 0, $w, $h, $imagedata[0], $imagedata[1]);imagejpeg($thumb);}resize_jpg($file,$W,$L);