首頁  >  文章  >  後端開發  >  php圖片處理方法,php圖片處理類

php圖片處理方法,php圖片處理類

WBOY
WBOY原創
2016-07-25 09:06:251115瀏覽
之前寫的一個php線上處理上傳圖片,能夠裁剪。加入水印圖,水印圖超過目標圖片尺寸時,水印圖能自動適應目標圖片而縮小,水印圖可以設定跟背景的合併度.源碼: http://www.pooy.net/phpphp.html


  1. *exif_imagetype -- 判斷一個圖片的型別
  2. *源碼下載:http://www.pooy.net/phpphp.html
  3. *說明:函數功能是把一個圖像裁剪為任意大小的圖像,圖像不變形
  4. * 參數說明:輸入需要處理圖片的文件名,生成新圖片的保存文件名,生成新圖片的寬,生成新圖片的高
  5. */
  6. // 取得任意大小影像,不足地方拉伸,不產生變形,不留下空白
  7. function my_image_resize($src_file, $dst_file , $new_width , $new_height) {
  8. $new_width= intval($new_width);
  9. $new_height=intval($new_width);
  10. if($new_width echo "paraightth thor or !";
  11. exit();
  12. }
  13. if(!file_exists($src_file)) {
  14. echo $src_file . " is not exists !";
  15. exit();
  16. }
  17. // 影像類型
  18. $type=exif_imagetype($src_file);
  19. $support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
  20. supfin_PNG( true)) {
  21. echo "this type of image does not support! only support jpg , gif or png";
  22. exit();
  23. }
  24. //Load image
  25. switch($類型) {
  26. case IMAGETYPE_JPEG :
  27. $src_img=imagecreatefromjpeg($src_file);
  28. break;
  29. case IMAGETYPE_PNG :
  30. break;
  31. case IMAGETYPE_PNG :
  32. $breakswhog; 🎜> case IMAGETYPE_GIF :
  33. $src_img=imagecreatefromgif($src_file);
  34. break;
  35. default:
  36. echo "Load image error!"; $w=imagesx($src_img);
  37. $h=imagesy($src_img);
  38. $ratio_w=1.0 * $new_width / $w;
  39. $ratio_h=1.0 * $new_width / $w;
  40. $ratio_h=1.0 * $new_height / $new ;
  41. $ratio=1.0;
  42. // 產生的影像的高寬比原來的都小,或都大,原則是取大比例放大,取大比例縮小(縮小的比例就比較小了)
  43. if( ($ratio_w 1 && $ratio_h > 1)) {
  44. if($ratio_w $ratio = $ ratio_h ; // 情況一,寬度的比例比高度方向的小,按照高度的比例標準來裁剪或放大
  45. }else {
  46. $ratio = $ratio_w ;
  47. }
  48. // 定義一個中間的暫存影像,該影像的寬高比剛好滿足目標要求
  49. $inter_w=(int)($new_width / $ratio);
  50. $inter_h=(int) ($new_height / $ratio);
  51. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  52. //var_dump($inter_img);
  53. imagecopy($inter_img, $src_img, 0,0,0,0,0,0,0,0,$ );
  54. // 產生一個以最大邊長度為大小的是目標圖片$ratio比例的暫存圖片
  55. // 定義一個新的圖片
  56. $new_img=imagecreatetruecolor($new_width,$new_height);
  57. //var_dump($new_img);exit();
  58. imagecopyresampled($new_img,$inter_img,0,0,0,0,$new_width,$new_height,$inter_w,$inter_h);
  59. switch($type) {
  60. case IMAGETYPE_JPEG :
  61. imagejpeg($new_img, $dst_file,100); // 儲存映像
  62. break;
  63. case IMAGETYPE_PNG 88_PNG>$im_PNG>$im_PNG $im_PNG $im_PNG>$im_PNG>$im_PNG>$im_PNG $im_PNG $im_PNG>$im_PNG $im_PNG $im$ dst_file,100);
  64. break;
  65. case IMAGETYPE_GIF :
  66. imagegif($new_img,$dst_file,100);
  67. break;
  68. default:break } // end if 1
  69. // 2 目標影像的一邊大於原圖,一邊小於原圖,先放大平普影像,再裁切
  70. // =if( ($ratio_w 1) || ($ratio_w >1 && $ratio_h else{
  71. $ratio=$ratio_h>$ratio_w? $ratio_h : $ratio_w; //取比例大的那個值
  72. // 定義一個中間的大圖像,該圖像的高或寬和目標圖像相等,然後對原圖放大
  73. $inter_w=(int)($w * $ratio);
  74. $ inter_h=(int) ($h * $ratio);
  75. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  76. //將原圖縮放比例後裁切
  77. imagecopyresampled($inter_img,$src_intergimg ,0,0,0,0,$inter_w,$inter_h,$w,$h);
  78. // 定義一個新的映像
  79. $new_img=imagecreatetruecolor($new_width,$new_height);
  80. imagecopy($new_img, $inter_img, 0,0,0,0,$new_width,$new_height);
  81. switch($type) {
  82. case IMAGETYPE_JPEG :
  83. imagejpeg($new_img,000 ); // 儲存映像
  84. break;
  85. case IMAGETYPE_PNG :
  86. imagepng($new_img,$dst_file,100);
  87. break;
  88. case IMAGETYPE_mim, break;
  89. default:
  90. break;
  91. }
  92. }// if3
  93. }// end function
  94. my_image_resize('test.gif','11111.gif','100px','100px');
  95. //來源碼下載:http://www. pooy.net/phpphp.html
  96. ?>
複製程式碼


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