php圖片無損壓縮的問題解決

來源:互聯網
上載者:User
本文介紹了關於PHP解決圖片無損壓縮的問題,分享給大家,具體如下:

代碼如下:

header("Content-type: image/jpeg"); $file = "111.jpg"; $percent = 1.5; //圖片壓縮比 list($width, $height) = getimagesize($file); //擷取原圖尺寸 //縮放尺寸 $newwidth = $width * $percent; $newheight = $height * $percent; $src_im = imagecreatefromjpeg($file); $dst_im = imagecreatetruecolor($newwidth, $newheight); imagecopyresized($dst_im, $src_im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); imagejpeg($dst_im); //輸出壓縮後的圖片 imagedestroy($dst_im); imagedestroy($src_im);

我發現用php的imagecopyresized把大圖片縮成小圖片時,圖片會變得很模糊,這時候要提升清晰度不如用 imagecopyresampled 代替 imagecopyresized也許會更好。

註:壓縮有損失是必然的,看的清楚與否實際上就是是否接受這個範圍的問題.比如你映像上原圖有些點是2px,但是你壓縮5倍,那麼這些點就會消失。

<?php  /** * desription 壓縮圖片 * @param sting $imgsrc 圖片路徑 * @param string $imgdst 壓縮後儲存路徑 */ function image_png_size_add($imgsrc,$imgdst){   list($width,$height,$type)=getimagesize($imgsrc);   $new_width = ($width>600?600:$width)*0.9;   $new_height =($height>600?600:$height)*0.9;   switch($type){    case 1:     $giftype=check_gifcartoon($imgsrc);     if($giftype){      header('Content-Type:image/gif');      $image_wp=imagecreatetruecolor($new_width, $new_height);      $image = imagecreatefromgif($imgsrc);      imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);      imagejpeg($image_wp, $imgdst,75);      imagedestroy($image_wp);     }     break;    case 2:     header('Content-Type:image/jpeg');     $image_wp=imagecreatetruecolor($new_width, $new_height);     $image = imagecreatefromjpeg($imgsrc);     imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);     imagejpeg($image_wp, $imgdst,75);     imagedestroy($image_wp);     break;    case 3:     header('Content-Type:image/png');     $image_wp=imagecreatetruecolor($new_width, $new_height);     $image = imagecreatefrompng($imgsrc);     imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);     imagejpeg($image_wp, $imgdst,75);     imagedestroy($image_wp);     break;   }  }  /** * desription 判斷是否gif動畫 * @param sting $image_file圖片路徑 * @return boolean t 是 f 否 */ function check_gifcartoon($image_file){   $fp = fopen($image_file,'rb');   $image_head = fread($fp,1024);   fclose($fp);   return preg_match("/".chr(0x21).chr(0xff).chr(0x0b).'NETSCAPE2.0'."/",$image_head)?false:true;  }  ?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.