php tiff图片转jpg

来源:互联网 发布:linux tar解压命令 编辑:程序博客网 时间:2024/06/15 17:58
function tiff2jpg($file,$newname) {
     $mgck_wnd = NewMagickWand();
     MagickReadImage($mgck_wnd, $file);

     $img_colspc = MagickGetImageColorspace($mgck_wnd);
     if ($img_colspc == MW_CMYKColorspace) {
         echo "$file was in CMYK format<br />";
         MagickSetImageColorspace($mgck_wnd, MW_RGBColorspace);
     }
     MagickSetImageFormat($mgck_wnd, 'JPG' );
     MagickWriteImage($mgck_wnd, $newname);
 }
这儿有一个要注意的地方,MagickWand这个扩展默认不支持tiff格式的图片,要装一下。