PHP取得遠端圖片並調整影像大小的實作程式碼

WBOY
發布: 2016-07-25 09:00:05
原創
1365 人瀏覽過
複製程式碼
  1. /**
  2. *
  3. *函數:調整圖片尺寸或產生縮圖
  4. *修改:2013-2-15
  5. *回傳:True/False
  6. *參數:
  7. * $Image 需要調整的圖片(含路徑)
  8. * $Dw=450 調整時最大寬度;縮圖時的絕對寬度
  9. * $Dh=450 調整時最大高度;縮圖時的絕對高度
  10. * $ Type=1 1,調整尺寸; 2,產生縮圖
  11. * site http://bbs.it-home.org
  12. */
  13. $phtypes=array('img/gif', 'img/jpg', ' img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png');
  14. function compressImg($Image,$Dw,$Dh,$Type){
  15. echo $Image;
  16. IF(!file_exists($Image)){
  17. echo "不存在圖片";
  18. return false;
  19. }
  20. echo "存在圖片";
  21. // 如果需要產生縮圖,則將原圖拷貝一下重新給$Image賦值(生成縮圖操作)
  22. // 當Type==1的時候,將不拷貝原始圖像文件,而是在原來的影像檔案上重新產生縮小後的影像(調整尺寸操作)
  23. IF($Type!=1){
  24. copy($Image,str_replace(".","_x.",$Image));
  25. $Image=str_replace(".","_x.",$Image);
  26. }
  27. // 取得檔案的型別,依照不同的型別建立不同的物件
  28. $ImgInfo=getimagesize ($Image);
  29. Switch($ImgInfo[2]){
  30. case 1:
  31. $Img =@imagecreatefromgif($Image);
  32. break;
  33. case 2:
  34. $Img =@imagecreatefromjpeg($Image);
  35. Break;
  36. case 3:
  37. $Img =@imagecreatefrompng($Image);
  38. break;
  39. }
  40. // 如果物件🎜> // 如果物件沒有建立成功,則說明非圖片檔案
  41. IF(Empty($Img)){
  42. // 如果是產生縮圖的時候出錯,則需要刪除已經複製的檔案
  43. IF($Type !=1){
  44. unlink($Image);
  45. }
  46. return false;
  47. }
  48. // 如果是執行調整尺寸操作則
  49. IF($Type==1 ){
  50. $w=ImagesX($Img);
  51. $h=ImagesY($Img);
  52. $width = $w;
  53. $height = $h;
  54. IF($ width>$Dw){
  55. $Par=$Dw/$width;
  56. $width=$Dw;
  57. $height=$height*$Par;
  58. IF($height>$Dh) {
  59. $Par=$Dh/$height;
  60. $height=$Dh;
  61. $width=$width*$Par;
  62. }
  63. } ElseIF($height>$Dh) {
  64. $Par=$Dh/$height;
  65. $height=$Dh;
  66. $width=$width*$Par;
  67. IF($width>$Dw){
  68. $ Par=$Dw/$width;
  69. $width=$Dw;
  70. $height=$height*$Par;
  71. }
  72. } Else {
  73. $width=$width;
  74. } Else {
  75. $width=$width;
  76. } Else {
  77. $width=$width;
  78. $height=$height;
  79. }
  80. $nImg =ImageCreateTrueColor($width,$height);// 新建一個真彩色畫布
  81. ImageCopyReSampled($nImg,$Img,0,0,0, 0,$width,$height,$w,$h);// 重採樣拷貝部分影像並調整大小
  82. ImageJpeg($nImg,$Image);// 以JPEG格式將影像輸出到瀏覽器或檔案
  83. return true;
  84. } Else {// 如果是執行生成縮圖操作則
  85. $w=ImagesX($Img);
  86. $h=ImagesY($Img);
  87. $ width = $w;
  88. $height = $h;
  89. $nImg =ImageCreateTrueColor($Dw,$Dh);
  90. IF($h/$w>$Dh/$Dw){// 高比較大
  91. $width=$Dw;
  92. $height=$h*$Dw/$w;
  93. $IntNH=$height-$Dh;
  94. ImageCopyReSampled($nImg, $Img, 0 , -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h);
  95. } Else {// 寬比較大
  96. $height=$Dh;
  97. $width= $w*$Dh/$h;
  98. $IntNW=$width-$Dw;
  99. ImageCopyReSampled($nImg, $Img,-$IntNW/1.8,0,0,0, $width, $Dh, $w, $h);
  100. }
  101. ImageJpeg($nImg,$Image);
return true;
} }; ?>
複製程式碼

2、取得遠端圖片

  1. //網頁圖片路徑
  2. $imgPath = 'http://bbs.it-home.org/phone/ compress-img/251139474ba926db3d7850.jpg';
  3. //$imgPath = "http://bbs.it-home.org/userfiles/image/20111125/251139474ba926db3d7850. http://bbs.it-home.org/', '', $imgPath);//替換換行字元
  4. $name = strrchr($tempPath, "/");
  5. $path = str_replace( $name, '', $tempPath);//替換換行字元
  6. /**
  7. *根據路徑p​​ath建立多層目錄
  8. *$dir目標目錄 $mode權限,0700表示最高權限
  9. */
  10. function makedir( $dir , $mode = "0700" ) {
  11. if (strpos($dir , "/" )){
  12. $dir_path = "" ;
  13. $dir_info = explode("/" , $dir );
  14. foreach($dir_info as $key => $dir );
  15. foreach($dir_info as $key => $ value){
  16. $dir_path .= $value ;
  17. if (!file_exists($dir_path)){
  18. @mkdir($dir_path, $mode) or die ("建立資料夾時失敗了" ) ;
  19. @chmod($dir_path, $mode);
  20. } else {
  21. $dir_path .= "/" ;
  22. continue ;
  23. }
  24. $dir_path .= "/" ;
  25. }
  26. return $dir_path ;
  27. } else {
  28. @mkdir($dir, $mode) or die( "建立失敗了,請檢查權限" );
  29. @chmod( $dir, $mode);
  30. return $dir ;
  31. }
  32. } //end makedir
  33. makedir($path);
  34. /**
  35. *根據url取得伺服器上的圖片
  36. *$url伺服器上圖片路徑 $filename檔名
  37. */
  38. function GrabImage($url,$filename="") {
  39. if($url=="") return false;
  40. if($filename=="") {
  41. $ext=strrchr ($url,".");
  42. if($ext!=".gif" && $ext!=".jpg" && $ext!=".png")
  43. return false;
  44. $filename=date("YmdHis").$ext;
  45. }
  46. ob_start();
  47. readfile($url);
  48. $img = ob_get_contents();
  49. ob_end_clean();
  50. $size = strlen($img);
  51. $fp2=@fopen($filename, "a");
  52. fwrite($fp2,$img);
  53. fclose($ fp2);
  54. return $filename;
  55. }
  56. ?>
複製程式碼

3、呼叫範例

  1. 允許上傳的檔案類型為:=implode(', ',$phtypes)? >
  2. echo $path."
    ";
  3. /**/
  4. $bigImg=GrabImage($imgPath, $tempPath);
  5. if($bigImg) {
  6. echo 'PHP取得遠端圖片並調整影像大小的實作程式碼
    ';
  7. } else {
  8. echo "false";
  9. }
  10. compressImg( $bigImg,100,80,1);
  11. ?>
複製程式碼


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板