首頁  >  文章  >  後端開發  >  php實作圖片壓縮的二個例子

php實作圖片壓縮的二個例子

WBOY
WBOY原創
2016-07-25 08:52:561044瀏覽
  1. /**
  2. * desription 壓縮圖片
  3. * @param sting $imgsrc 圖片路徑
  4. * @param string $imgdst 壓縮後儲存路徑
  5. */
  6. function image_png_size_add($imgsrc,$imgdst){ $new_width = ($width>600?600:$width)*0.9;
  7. $new_height =($height>600?600:$height)*0.9;
  8. switch($type){
  9. 情況 1:
  10. $giftype=check_gifcartoon($imgsrc);
  11. if($giftype){
  12. header('Content-Type:image/gif');
  13. $image_wp=imagecreatetruecolor($new_width, $new_height);
  14. $image = imagecreatefromgif($imgsrc);
  15. imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  16. imagejpeg($image_wp, $imgdst,75);
  17. imagedestroy($image_wp);
  18. }
  19. 休息;
  20. 情況2:
  21. header('Content-Type:image/jpeg');
  22. $image_wp=imagecreatetruecolor($new_width, $new_height);
  23. $image = imagecreatefromjpeg($imgsrc);
  24. imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  25. imagejpeg($image_wp, $imgdst,75);
  26. imagedestroy($image_wp);
  27. 休息;
  28. 情況3:
  29. header('Content-Type:image/png');
  30. $image_wp=imagecreatetruecolor($new_width, $new_height);
  31. $image = imagecreatefrompng($imgsrc);
  32. imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  33. imagejpeg($image_wp, $imgdst,75);
  34. imagedestroy($image_wp);
  35. 休息;
  36. } // bbs.it-home.org
  37. }
  38. /**
  39. * desription 判斷是否gif動畫
  40. * @param sting $image_file圖片路徑
  41. * @return boolean t 是 f 否
  42. */
  43. function check_gifcartoon($image_file){
  44. $fp = fopenp = fopen ($image_file,'rb');
  45. $image_head = fread($fp,1024);
  46. fclose($fp);
  47. return preg_match("/".chr(0x21).chr(0xff).chr(0x0b).'NETSCAPE2.0'."/",$image_head)?false:true;
  48. }
  49. ?>
複製程式碼

例2:

  1. /*
  2. 函數:調整圖片尺寸或產生縮圖
  3. 回傳:True/False
  4. 參數:
  5. $Image 需要調整的圖片(含路徑)
  6. $Dw=450 調整時最大寬度;縮圖時的絕對寬度
  7. $Dh=450 調整時最大高度;
  8. $Type=1 1,調整尺寸; 2,產生縮圖
  9. $path='img/';//路徑
  10. $phtypes=array(
  11. 'img/gif',
  12. 'img/jpg',
  13. 'img/jpeg',
  14. 'img/bmp',
  15. 'img/pjpeg',
  16. 'img/x-png'
  17. );
  18. Function Img($Image,$Dw=450,$Dh=450,$Type=1){
  19. IF(!File_Exists($Image)){
  20. Return False;
  21. }
  22. }
  23. //若需要產生縮圖,則將原圖拷貝一下重新給$Image賦值
  24. IF($Type!=1){
  25. Copy($Image,Str_Replace(".","_x.", $Image));
  26. $Image=Str_Replace(".","_x.",$Image);
  27. }
  28. //取得檔案的型別,依照不同的型別建立不同的物件
  29. $ImgInfo=GetImageSize($Image);
  30. Switch($ImgInfo[2]){
  31. Case 1:
  32. $Img = @ImageCreateFromGIF($Image);
  33. Break; 2:
  34. $Img = @ImageCreateFromJPEG($Image);
  35. Break;
  36. Case 3:
  37. $Img = @ImageCreateFromPNG($Image);
  38. }
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }
  46. } //如果物件沒有建立成功,則說明非圖片檔案
  47. IF(Empty($Img)){
  48. //如果是產生縮圖的時候出錯,則需要刪除已經複製的檔案
  49. IF($Type!=1){Unlink($Image);}
  50. Return False;
  51. }
  52. //如果是執行調整尺寸操作則
  53. IF($Type==1) {
  54. $w=ImagesX($Img);
  55. $h=ImagesY($Img);
  56. $width = $w;
  57. $height = $h;
  58. IF($width >$Dw){
  59. $Par=$Dw/$width;
  60. $width=$Dw;
  61. $height=$height*$Par;
  62. IF($height>$Dh){
  63. $Par=$Dh/$height;
  64. $height=$Dh;
  65. $width=$width*$Par;
  66. }
  67. }ElseIF($height>$Dh){
  68. $Par=$Dh/$height;
  69. $height=$Dh;
  70. $width=$width*$Par;
  71. IF($width>$Dw){
  72. $Par =$Dw/$width;
  73. $width=$Dw;
  74. $height=$height*$Par;
  75. }
  76. }Else{
  77. $width=$width;
  78. $height=$height;
  79. }
  80. $nImg = ImageCreateTrueColor($width,$height); //新建一個真彩色畫布
  81. ImageCopyReSampled($nImg,$Img,0,0,0,00 ,$width,$height,$w,$h);//重採樣拷貝部分影像並調整大小
  82. ImageJpeg ($nImg,$Image); //以JPEG格式將影像輸出到瀏覽器或檔案
  83. Return True;
  84. //如果是執行生成縮圖操作則
  85. }Else{
  86. $w=ImagesX($Img);
  87. $h=ImagesY($Img);
  88. $width = $w;
  89. $height = $h;
  90. $nImg = ImageCreateTrueColor($Dw,$Dh);
  91. IF($h/$w>$Dh/$Dw){ / /高比較大
  92. $width=$Dw;
  93. $height=$h*$Dw/$w;
  94. $IntNH=$height-$Dh;
  95. ImageCopyReSampled($nImg, $Img , 0, -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h);
  96. }Else{ //寬比較大
  97. $height=$Dh;
  98. $ width=$w*$Dh/$h;
  99. $IntNW=$width-$Dw;
  100. ImageCopyReSampled($nImg, $Img, -$IntNW/1.8, 0, 0, 0, $width, $ Dh, $w, $h);
  101. }
  102. ImageJpeg ($nImg,$Image);
  103. Return True;
  104. }
  105. }
  106. ?>
  107. 上傳圖片
  108. 允許上傳的檔案類型為:=implode(', ',$phtypes)? >
  109. if($_SERVER['REQUEST_METHOD']=='POST'){
  110. if (!is_uploaded_file($_FILES["photo"][tmp_name])) {
  111. echo "圖片不存在";
  112. exit();
  113. }
  114. if(!is_dir('img')){//路徑若不存在則創建
  115. mkdir(' img');
  116. }
  117. $upfile=$_FILES["photo"];
  118. $pinfo=pathinfo($upfile["name"]);
  119. $name=$pinfo['basename '];//檔案名稱
  120. $tmp_name=$upfile["tmp_name"];
  121. $file_type=$pinfo['extension'];//取得檔案類型
  122. $showphpath=$path.$ name;
  123. if(in_array($upfile["type"],$phtypes)){
  124. echo "檔案類型不符! ";
  125. exit();
  126. }
  127. if(move_uploaded_file($tmp_name,$path.$name)){
  128. echo "成功! ";
  129. Img($showphpath,100,800,2);
}
echo "php實作圖片壓縮的二個例子"; }?>
複製程式碼


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn