php擷取遠程圖片url產生縮圖的方法

來源:互聯網
上載者:User
  1. /**

  2. *
  3. *函數:調整圖片尺寸或產生縮圖
  4. *返回:True/False
  5. *參數:
  6. * $Image 需要調整的圖片(含路徑)
  7. * $Dw=450 調整時最大寬度;縮圖時的絕對寬度
  8. * $Dh=450 調整時最大高度;縮圖時的絕對高度
  9. * $Type=1 1,調整尺寸; 2,產生縮圖
  10. */ bbs.it-home.org
  11. $phtypes=array('img/gif', 'img/jpg', 'img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png');

  12. function compressImg($Image,$Dw,$Dh,$Type){

  13. IF(!file_exists($Image)){
  14. return false;
  15. }
  16. // 如果需要產生縮圖,則將原圖拷貝一下重新給$Image賦值(產生縮圖操作)
  17. // 當Type==1的時候,將不拷貝原影像檔,而是在原來的影像檔上重建縮小後的映像(調整尺寸操作)
  18. IF($Type!=1){
  19. copy($Image,str_replace(".","_x.",$Image));
  20. $Image=str_replace(".","_x.",$Image);
  21. }
  22. // 取得檔案的類型,根據不同的類型建立不同的對象
  23. $ImgInfo=getimagesize($Image);
  24. Switch($ImgInfo[2]){
  25. case 1:
  26. $Img =@imagecreatefromgif($Image);
  27. break;
  28. case 2:
  29. $Img =@imagecreatefromjpeg($Image);
  30. Break;
  31. case 3:
  32. $Img =@imagecreatefrompng($Image);
  33. break;
  34. }
  35. // 如果對象沒有建立成功,則說明非圖片檔案
  36. IF(Empty($Img)){
  37. // 如果是產生縮圖的時候出錯,則需要刪掉已經複製的檔案
  38. IF($Type!=1){
  39. unlink($Image);
  40. }
  41. return false;
  42. }
  43. // 如果是執行調整尺寸操作則
  44. IF($Type==1){
  45. $w=ImagesX($Img);
  46. $h=ImagesY($Img);
  47. $width = $w;
  48. $height = $h;
  49. IF($width>$Dw){
  50. $Par=$Dw/$width;
  51. $width=$Dw;
  52. $height=$height*$Par;
  53. IF($height>$Dh){
  54. $Par=$Dh/$height;
  55. $height=$Dh;
  56. $width=$width*$Par;
  57. }
  58. } ElseIF($height>$Dh) {
  59. $Par=$Dh/$height;
  60. $height=$Dh;
  61. $width=$width*$Par;
  62. IF($width>$Dw){
  63. $Par=$Dw/$width;
  64. $width=$Dw;
  65. $height=$height*$Par;
  66. }
  67. } Else {
  68. $width=$width;
  69. $height=$height;
  70. }
  71. $nImg =ImageCreateTrueColor($width,$height);// 建立一個真彩色畫布
  72. ImageCopyReSampled($nImg,$Img,0,0,0,0,$width,$height,$w,$h);// 重採樣拷貝部分映像並調整大小
  73. ImageJpeg($nImg,$Image);// 以JPEG格式將映像輸出到瀏覽器或檔案
  74. return true;
  75. } Else {// 如果是執行產生縮圖操作則
  76. $w=ImagesX($Img);
  77. $h=ImagesY($Img);
  78. $width = $w;
  79. $height = $h;
  80. $nImg =ImageCreateTrueColor($Dw,$Dh);
  81. IF($h/$w>$Dh/$Dw){// 高比較大
  82. $width=$Dw;
  83. $height=$h*$Dw/$w;
  84. $IntNH=$height-$Dh;
  85. ImageCopyReSampled($nImg, $Img, 0, -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h);
  86. } Else {// 寬比較大
  87. $height=$Dh;
  88. $width=$w*$Dh/$h;
  89. $IntNW=$width-$Dw;
  90. ImageCopyReSampled($nImg, $Img,-$IntNW/1.8,0,0,0, $width, $Dh, $w, $h);
  91. }
  92. ImageJpeg($nImg,$Image);
  93. return true;
  94. }
  95. };
  96. /**
  97. *根據url擷取伺服器上的圖片
  98. *$url伺服器片路徑 $filename檔案名稱
  99. */
  100. function GrabImage($url,$filename="") {
  101. if($url=="") return false;
  102. if($filename=="") {
  103. $ext=strrchr($url,".");
  104. if($ext!=".gif" && $ext!=".jpg" && $ext!=".png")
  105. return false;
  106. $filename=date("YmdHis").$ext;
  107. }
  108. ob_start();
  109. readfile($url);
  110. $img = ob_get_contents();
  111. ob_end_clean();
  112. $size = strlen($img);
  113. $fp2=@fopen($filename, "a");
  114. fwrite($fp2,$img);
  115. fclose($fp2);
  116. return $filename;
  117. }
  118. ?>

複製代碼

調用方法:

  1. //網狀圖片路徑
  2. $imgPath = 'http://news.xxxx.cn/images/1382088444437.jpg';//遠程URL 地址
  3. $tempPath = 'aa/bbs.jpg';//儲存圖片路徑
  4. if(is_file($tempPath)){
  5. unlink($tempPath);
  6. }
  7. $bigImg=GrabImage($imgPath, $tempPath);
  8. compressImg($bigImg,70,70,1);
  9. ?>
複製代碼
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.