>  기사  >  백엔드 개발  >  PHP 이미지 처리 방법, PHP 이미지 처리 클래스

PHP 이미지 처리 방법, PHP 이미지 처리 클래스

WBOY
WBOY원래의
2016-07-25 09:06:251081검색
프로세스가 온라인으로 이미지를 업로드하기 전에 작성한 PHP는 잘라낼 수 있습니다. 워터마크 이미지를 추가합니다. 워터마크 이미지가 대상 이미지의 크기를 초과하면 워터마크 이미지가 대상 이미지에 맞게 자동으로 조정되고 소스 코드와 병합되는 정도를 설정할 수 있습니다. http://www.pooy.net/phpphp.html


  1. *exif_imagetype -- 이미지 유형 결정
  2. *소스 코드 다운로드: http://www.pooy.net/phpphp.html
  3. *설명: 이미지의 변형 없이 이미지를 임의 크기의 이미지로 자르는 기능입니다
  4. * 매개변수 설명: 처리할 이미지의 파일 이름을 입력하고, 새 이미지의 저장 파일 이름을 생성합니다. , 새 이미지의 너비 생성, 새 이미지의 높이 생성
  5. */
  6. // 원하는 크기의 이미지 가져오기, 부족한 영역 늘리기, 변형 없음, 공백 없음
  7. 함수 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 <1 || $new_height <1) {
  11. echo "매개변수 너비 또는 높이 오류 !";
  12. exit();
  13. }
  14. if(!file_exists($src_file)) {
  15. echo $src_file . " 존재하지 않습니다 !";
  16. exit() ;
  17. }
  18. // 이미지 유형
  19. $type=exif_imagetype($src_file);
  20. $support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
  21. if(!in_array($type, $support_type,true)) {
  22. echo "이 유형의 이미지는 지원하지 않습니다! jpg, gif 또는 png만 지원합니다.";
  23. exit();
  24. }
  25. //이미지 로드
  26. switch($type) {
  27. case IMAGETYPE_JPEG :
  28. $src_img=imagecreatefromjpeg($src_file);
  29. break;
  30. case IMAGETYPE_PNG :
  31. $src_img=imagecreatefrompng($src_file);
  32. break;
  33. case IMAGETYPE_GIF :
  34. $src_img=imagecreatefromgif($src_file);
  35. break;
  36. 기본값:
  37. echo "로드 이미지 오류!";
  38. 종료();
  39. }
  40. $w=imagesx($src_img);
  41. $h=imagesy($src_img);
  42. $ratio_w=1.0 * $new_width / $w;
  43. $ratio_h=1.0 * $new_height / $h;
  44. $ratio=1.0;
  45. // 생성된 이미지의 높이와 너비는 원본보다 작거나 커짐을 원칙으로 합니다. 큰 비율로 확대하고 큰 비율로 줄이는 것입니다(축소 비율이 상대적으로 작습니다)
  46. if( ($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {
  47. if($ratio_w < $ratio_h) {
  48. $ratio = $ratio_h ; // 경우 1, 너비 비율이 높이 방향보다 작음, 높이에 따라 자르기 또는 확대 ratio Standard
  49. }else {
  50. $ratio = $ratio_w ;
  51. }
  52. // 종횡비가 목표 요구 사항을 정확히 충족하는 중간 임시 이미지를 정의합니다.
  53. $inter_w=(int)($ new_width / $ratio);
  54. $inter_h=(int) ($new_height / $ratio);
  55. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  56. //var_dump($inter_img);
  57. imagecopy($inter_img, $src_img, 0,0,0 ,0,$inter_w,$inter_h);
  58. // 대상 이미지 크기만큼 최대 변 길이를 갖는 임시 이미지 생성 $ratio
  59. // 새 이미지 정의
  60. $new_img=imagecreatetruecolor ($new_width,$new_height);
  61. //var_dump($new_img);exit();
  62. imagecopyresampled($new_img,$inter_img,0, 0,0,0,$new_width,$new_height,$inter_w ,$inter_h);
  63. switch($type) {
  64. case IMAGETYPE_JPEG :
  65. imagejpeg($new_img, $dst_file,100) // 이미지 저장
  66. break;
  67. 케이스 IMAGETYPE_PNG :
  68. imagepng($new_img,$dst_file,100);
  69. break;
  70. 케이스 IMAGETYPE_GIF :
  71. imagegif($new_img,$dst_file,100 );
  72. break;
  73. default:
  74. break;
  75. }
  76. } // end if 1
  77. // 2 대상 이미지의 한쪽이 원본 이미지보다 크고, 한쪽이 원본 이미지보다 작습니다. 먼저 일반 이미지를 확대한 다음 잘라냅니다.
  78. // =if( ($ratio_w < 1 && $ratio_h > 1) || ($ratio_w >1 && $ ratio_h <1) )
  79. else{
  80. $ratio=$ratio_h>$ratio_w? $ ratio_h : $ratio_w; //비율이 더 큰 값을 취합니다.
  81. //높이가 큰 중간 이미지를 정의합니다. 또는 너비가 대상 이미지와 동일하고 원본 이미지를 확대합니다
  82. $inter_w=(int) ($w * $ratio);
  83. $inter_h=(int) ($h * $ratio);
  84. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  85. //원본 이미지 크기 조정 후 자르기
  86. imagecopyresampled($inter_img,$src_img,0,0,0,0,$inter_w,$inter_h, $w,$h);
  87. // 새 이미지 정의
  88. $new_img= imagecreatetruecolor($new_width,$new_height);
  89. imagecopy($new_img, $inter_img, 0,0,0,0, $new_width,$new_height);
  90. switch($type) {
  91. case IMAGETYPE_JPEG:
  92. imagejpeg($new_img, $dst_file,100); // 이미지 저장
  93. break;
  94. case IMAGETYPE_PNG :
  95. imagepng($new_img,$dst_file,100);
  96. break;
  97. case IMAGETYPE_GIF :
  98. imagegif($new_img,$dst_file,100);
  99. break;
  100. 기본값:
  101. 휴식;
  102. }
  103. }// if3
  104. }// 함수 종료
  105. my_image_resize('test.gif','11111.gif','100px','100px');
  106. //소스 코드 다운로드: http://www . pooy.net/phpphp.html
  107. ?>
코드 복사


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.