백엔드 개발 PHP 튜토리얼 PHP에서 적응형 크기 축소판을 생성하는 방법

PHP에서 적응형 크기 축소판을 생성하는 방법

Jul 25, 2016 am 09:12 AM

썸네일을 생성하는 PHP 클래스입니다.

  1. define ( 'MAX_IMG_SIZE', 100000 );
  2. // 지원되는 이미지 유형
  3. define ( 'THUMB_JPEG', 'image /jpeg' );
  4. 정의( 'THUMB_PNG', 'image/png' );
  5. 정의( 'THUMB_GIF', 'image/gif' );
  6. // 인터레이스 모드
  7. 정의( ' INTERLACE_OFF', 0 );
  8. define ( 'INTERLACE_ON', 1 );
  9. // 출력 모드
  10. define ( 'STDOUT', '' );
  11. // 빈 상수
  12. define ( 'NO_LOGO', '' );
  13. define ( 'NO_LABEL', '' );
  14. // 로고 및 라벨 위치 지정
  15. define ( 'POS_LEFT', 0 );
  16. define ( 'POS_RIGHT' , 1 );
  17. 정의( 'POS_CENTER', 2 );
  18. 정의( 'POS_TOP', 3 );
  19. 정의( 'POS_BOTTOM', 4 );
  20. // 오류 메시지
  21. Define ( 'E_001', '파일 %s 존재하지 않습니다' );
  22. define ( 'E_002', '%s에서 이미지 데이터를 읽지 못했습니다.' );
  23. define ( 'E_003', '%s' );
  24. define ( 'E_004', '로고 이미지를 복사할 수 없습니다' );
  25. define ( 'E_005', '최종 이미지를 생성할 수 없습니다' );
  26. // ****************************** **********************************************
  27. / / 클래스 정의
  28. // ****************************************** **********************************
  29. 클래스 썸네일 이미지
  30. {
  31. // ** ************************************************** ************************
  32. // 공공재산
  33. // ************** ************************************************** ************
  34. var $src_file; // 소스 이미지 파일
  35. var $dest_file; // 대상 이미지 파일
  36. var $dest_type; // 대상 이미지 유형
  37. var $interlace; // 대상 이미지 인터레이스 모드
  38. var $jpeg_quality; // 결과 JPEG의 품질
  39. var $max_width; // 최대 썸네일 너비
  40. var $max_height; // 최대 썸네일 높이
  41. var $fit_to_max; // 작은 이미지를 확대하시겠습니까?
  42. var $logo; // 로고 매개변수 배열
  43. var $label; // 라벨 매개변수 배열
  44. // *************************************** *************************************
  45. // 클래스 생성자
  46. // * ************************************************** *************************
  47. /*
  48. 설명:
  49. 속성의 기본값을 정의합니다.
  50. 프로토타입:
  51. void ThumbImg ( string src_file = '' )
  52. 매개변수:
  53. src_file - 소스 이미지 파일 이름
  54. */
  55. function ThumbnailImage ( $src_file = '' )
  56. {
  57. $this ->src_file = $src_file;
  58. $this->dest_file = STDOUT;
  59. $this->dest_type = THUMB_JPEG;
  60. $this->interlace = INTERLACE_OFF;
  61. $this- >jpeg_quality = -1;
  62. $this->max_width = 100;
  63. $this->max_height = 90;
  64. $this->fit_to_max = FALSE;
  65. $this-> ;logo['file'] = NO_LOGO;
  66. $this->logo['vert_pos'] = POS_TOP;
  67. $this->logo['horz_pos'] = POS_LEFT;
  68. $this- >label['text'] = NO_LABEL;
  69. $this->label['vert_pos'] = POS_BOTTOM;
  70. $this->label['horz_pos'] = POS_RIGHT;
  71. $this ->label['font'] = '';
  72. $this->label['size'] = 20;
  73. $this->label['color'] = '#000000';
  74. $this->label['angle'] = 0;
  75. }
  76. // ************************ ************************************************** **
  77. // 비공개 방법
  78. // ************************************ ****************************************
  79. /*
  80. 설명:
  81. 16진수 색상 문자열에서 10진수 색상 구성요소를 추출합니다.
  82. 프로토타입:
  83. 배열 ParseColor( 문자열 hex_color )
  84. 매개변수:
  85. hex_color - '#rrggbb' 형식의 색상
  86. 반환:
  87. 빨간색, 녹색 및 파란색 색상 구성 요소의 소수 값.
  88. */
  89. function ParseColor ( $hex_color )
  90. {
  91. if ( strpos ( $hex_color, '#' ) === 0 )
  92. $hex_color = substr ( $hex_color, 1 );
  93. $r = hexdec ( substr ( $hex_color, 0, 2 ) );
  94. $g = hexdec ( substr ( $hex_color, 2, 2 ) ) ;
  95. $b = hexdec ( substr ( $hex_color, 4, 2 ) );
  96. return array ( $r, $g, $b );
  97. }
  98. /*
  99. 설명:
  100. 이미지 데이터를 문자열로 검색합니다.
  101. 이 함수에 대한 아이디어를 제공한 Luis Larrateguy에게 감사드립니다.
  102. 프로토타입:
  103. string GetImageStr( string image_file )
  104. 매개변수:
  105. image_file - 파일 이름 image
  106. 반환:
  107. 이미지 파일 내용 문자열.
  108. */
  109. function GetImageStr ( $image_file )
  110. {
  111. if ( function_exists ( 'file_get_contents' ) )
  112. {
  113. $str = @file_get_contents ( $image_file );
  114. if ( ! $str )
  115. {
  116. $err = sprintf( E_002, $image_file );
  117. Trigger_error( $err, E_USER_ERROR );
  118. }
  119. return $str;
  120. }
  121. $f = fopen ( $image_file, 'rb' );
  122. if ( ! $f )
  123. {
  124. $err = sprintf( E_002, $image_file );
  125. Trigger_error( $err, E_USER_ERROR ) ;
  126. }
  127. $fsz = @filesize( $image_file );
  128. if( ! $fsz )
  129. $fsz = MAX_IMG_SIZE;
  130. $str = fread( $f, $fsz );
  131. fclose( $f );
  132. return $str;
  133. }
  134. /*
  135. 설명:
  136. 파일에서 이미지를 로드합니다.
  137. 프로토타입:
  138. 리소스 LoadImage( string image_file, int &image_width, int &image_height )
  139. 매개변수:
  140. image_file - 이미지의 파일 이름
  141. image_width - 로드된 이미지의 너비
  142. image_height - 로드된 이미지의 높이
  143. 반환:
  144. 주어진 파일.
  145. */
  146. 함수 LoadImage( $image_file, &$image_width, &$image_height )
  147. {
  148. $image_width = 0;
  149. $image_height = 0;
  150. $image_data = $this->GetImageStr( $image_file );
  151. $image = imagecreatefromstring( $image_data );
  152. if( ! $image )
  153. {
  154. $err = sprintf( E_003, $image_file ) ;
  155. Trigger_error( $err, E_USER_ERROR );
  156. }
  157. $image_width = 이미지x( $image );
  158. $image_height = imagey( $image );
  159. $image 반환;
  160. }
  161. /*
  162. 설명:
  163. 소스 이미지 너비와 높이에서 썸네일 이미지 크기를 계산합니다.
  164. 프로토타입:
  165. array GetThumbSize( int src_width, int src_height )
  166. 매개변수:
  167. src_width - 소스 이미지의 너비
  168. src_height - 소스 이미지의 높이
  169. 반환:
  170. 요소가 2개인 배열입니다. 인덱스 0에는 썸네일 이미지의 너비가 포함되고
  171. 인덱스 1에는 높이가 포함됩니다.
  172. */ 生成缩略图
  173. function GetThumbSize ( $src_width, $src_height )
  174. {
  175. $max_width = $this ->max_width;
  176. $max_height = $this->max_height;
  177. $x_ratio = $max_width / $src_width;
  178. $y_ratio = $max_height / $src_height;
  179. $is_small = ( $ src_width <= $max_width && $src_height <= $max_height );
  180. if ( ! $this->fit_to_max && $is_small )
  181. {
  182. $dest_width = $src_width;
  183. $dest_height = $src_height;
  184. }
  185. elseif( $x_ratio * $src_height < $max_height )
  186. {
  187. $dest_width = $max_width;
  188. $dest_height = ceil( $x_ratio * $src_height ) ;
  189. }
  190. else
  191. {
  192. $dest_width = ceil ( $y_ratio * $src_width );
  193. $dest_height = $max_height;
  194. }
  195. 반환 배열( $dest_width, $dest_height );
  196. }
  197. /*
  198. 설명:
  199. 썸네일에 로고 이미지를 추가합니다.
  200. 프로토타입:
  201. void AddLogo( int Thumb_width, int Thumb_height, Resource &thumb_img )
  202. 매개변수:
  203. Thumb_width - 썸네일 이미지의 너비
  204. Thumb_height - 썸네일 이미지의 높이
  205. Thumb_img - 썸네일 이미지 식별자
  206. */
  207. function AddLogo ( $thumb_width, $thumb_height, &$thumb_img )
  208. {
  209. 추출( $this->logo );
  210. $logo_image = $this->LoadImage( $file, $logo_width, $logo_height );
  211. if( $vert_pos == POS_CENTER )
  212. $y_pos = ceil ( $thumb_height / 2 - $logo_height / 2 );
  213. elseif ($vert_pos == POS_BOTTOM)
  214. $y_pos = $thumb_height - $logo_height;
  215. else
  216. $ y_pos = 0;
  217. if ( $horz_pos == POS_CENTER )
  218. $x_pos = ceil ( $thumb_width / 2 - $logo_width / 2 );
  219. elseif ( $horz_pos == POS_RIGHT )
  220. $x_pos = $thumb_width - $logo_width;
  221. else
  222. $x_pos = 0;
  223. if ( ! imagecopy ( $thumb_img, $logo_image, $x_pos, $y_pos, 0, 0,
  224. $logo_width, $logo_height ) )
  225. Trigger_error( E_004, E_USER_ERROR );
  226. }
  227. /*
  228. 설명:
  229. 썸네일에 레이블 텍스트를 추가합니다.
  230. 프로토타입:
  231. void AddLabel( int Thumb_width, int Thumb_height, Resource &thumb_img )
  232. 매개변수:
  233. Thumb_width - 썸네일 이미지의 너비
  234. Thumb_height - 썸네일 이미지 높이
  235. Thumb_img - 썸네일 이미지 식별자
  236. */
  237. function AddLabel( $thumb_width, $thumb_height, &$thumb_img )
  238. {
  239. extract( $this->label );
  240. list( $r, $g, $b ) = $this->ParseColor ( $color );
  241. $color_id = imagecolorallocate ( $thumb_img, $r, $g, $b );
  242. $text_box = imagettfbbox ( $size, $angle, $font, $text );
  243. $text_width = $text_box [ 2 ] - $text_box [ 0 ];
  244. $text_height = abs ( $text_box [ 1 ] - $text_box [ 7 ] );
  245. if ( $vert_pos == POS_TOP )
  246. $y_pos = 5 $text_height;
  247. elseif ( $vert_pos == POS_CENTER )
  248. $y_pos = ceil( $thumb_height / 2 - $text_height / 2 );
  249. elseif ( $vert_pos == POS_BOTTOM )
  250. $y_pos = $thumb_height - $text_height;
  251. if ( $horz_pos == POS_LEFT )
  252. $x_pos = 5;
  253. elseif( $horz_pos == POS_CENTER )
  254. $x_pos = ceil( $thumb_width / 2 - $text_width / 2 );
  255. elseif( $horz_pos == POS_RIGHT )
  256. $x_pos = $thumb_width - $text_width -5;
  257. imagettftext ( $thumb_img, $size, $angle, $x_pos, $y_pos,
  258. $color_id, $font, $text );
  259. }
  260. /*
  261. 설명:
  262. 브라우저에 썸네일 이미지를 출력합니다.
  263. 프로토타입:
  264. void OutputThumbImage(resource dest_image)
  265. 매개변수:
  266. dest_img - 썸네일 이미지 식별자
  267. */ 输 Out缩略图
  268. function OutputThumbImage ( $dest_image )
  269. {
  270. imageinterlace ( $dest_image, $this->interlace );
  271. header ( 'Content-type: ' . $this-> ;dest_type );
  272. if ( $this->dest_type == THUMB_JPEG )
  273. imagejpeg ( $dest_image, '', $this->jpeg_quality );
  274. elseif ( $this->dest_type = = THUMB_GIF )
  275. imagegif($dest_image);
  276. elseif ( $this->dest_type == THUMB_PNG )
  277. imagepng ( $dest_image );
  278. }
  279. /*
  280. 설명:
  281. 썸네일 이미지를 디스크 파일에 저장합니다.
  282. 프로토타입:
  283. void SaveThumbImage(문자열 image_file, 리소스 dest_image )
  284. 매개변수:
  285. image_file - 대상 파일 이름
  286. dest_img - 썸네일 이미지 식별자
  287. */
  288. function SaveThumbImage ( $image_file, $dest_image )
  289. {
  290. imageinterlace ( $dest_image, $this->interlace );
  291. if ( $this->dest_type == THUMB_JPEG )
  292. imagejpeg( $dest_image, $this->dest_file, $this->jpeg_quality );
  293. elseif( $this->dest_type == THUMB_GIF )
  294. imagegif( $dest_image, $this- >dest_file );
  295. elseif ( $this->dest_type == THUMB_PNG )
  296. imagepng ( $dest_image, $this->dest_file );
  297. }
  298. // ***** ************************************************** *********************
  299. // 공개 방법
  300. // ***************** ************************************************** *********
  301. /*
  302. 설명:
  303. 매개변수의
  304. 값에 따라 브라우저나 디스크 파일에 썸네일 이미지를 출력합니다.
  305. 프로토타입:
  306. void Output ( )
  307. */ 生成缩略图文
  308. function Output()
  309. {
  310. $src_image = $this->LoadImage($this->src_file, $src_width, $src_height);
  311. $dest_size = $this->GetThumbSize($src_width, $src_height);
  312. $dest_width=$dest_size[0];
  313. $dest_height=$dest_size[1];
  314. $dest_image= imagecreatetruecolor($dest_width, $dest_height);
  315. if (!$dest_image)
  316. Trigger_error(E_005, E_USER_ERROR);
  317. imagecopyresampled( $dest_image, $src_image, 0, 0, 0, 0,
  318. $dest_width, $dest_height, $src_width, $src_height );
  319. if ($this->logo['file'] != NO_LOGO)
  320. $this->AddLogo($dest_width, $dest_height, $ dest_image);
  321. if ($this->label['text'] != NO_LABEL)
  322. $this->AddLabel($dest_width, $dest_height, $dest_image);
  323. if ($this ->dest_file == STDOUT)
  324. $this->OutputThumbImage ( $dest_image );
  325. else
  326. $this->SaveThumbImage ( $this->dest_file, $dest_image );
  327. imagedestroy( $src_image );
  328. imagedestroy( $dest_image );
  329. }
  330. } // 클래스 정의 끝
  331. ?>
复system代码

사용 방법: 1、首先引用该php文件(不要告诉我不会) 2、调사용대码

  1. $tis = new ThumbnailImage();
  2. $tis->src_file = "这里写源文件的路径"
  3. $tis- >dest_type = THUMB_JPEG;//생성사진 형식 jpg
  4. $tis->dest_file = '这里写目标文件的路径';
  5. $tis->max_width = 120;//자체 크기 ,但是最大宽島为120
  6. $tis->max_height = 4000; //自适应大小,但是最大高島为4000
  7. $tis->Output();
复代码

代码关键재于: 최대 너비 와 최대 높이 , 一般来说除不图文很有个性,否则缩略图生成成还是很不错的.



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

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

11 최고의 PHP URL 쇼트너 스크립트 (무료 및 프리미엄) 11 최고의 PHP URL 쇼트너 스크립트 (무료 및 프리미엄) Mar 03, 2025 am 10:49 AM

종종 키워드와 추적 매개 변수로 혼란스러워하는 긴 URL은 방문자를 방해 할 수 있습니다. URL 단축 스크립트는 솔루션을 제공하여 소셜 미디어 및 기타 플랫폼에 이상적인 간결한 링크를 만듭니다. 이 스크립트는 개별 웹 사이트 a에 유용합니다

Laravel의 플래시 세션 데이터로 작업합니다 Laravel의 플래시 세션 데이터로 작업합니다 Mar 12, 2025 pm 05:08 PM

Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

Laravel Back End : Part 2, React가있는 React 앱 구축 Laravel Back End : Part 2, React가있는 React 앱 구축 Mar 04, 2025 am 09:33 AM

이것은 Laravel 백엔드가있는 React Application을 구축하는 데있어 시리즈의 두 번째이자 마지막 부분입니다. 이 시리즈의 첫 번째 부분에서는 기본 제품 목록 응용 프로그램을 위해 Laravel을 사용하여 편안한 API를 만들었습니다. 이 튜토리얼에서는 Dev가 될 것입니다

Laravel 테스트에서 단순화 된 HTTP 응답 조롱 Laravel 테스트에서 단순화 된 HTTP 응답 조롱 Mar 12, 2025 pm 05:09 PM

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> ​​'Hello World', 'github.com'=> ​​[ 'foo'=> 'bar'], 'forge.laravel.com'=>

PHP의 컬 : REST API에서 PHP Curl Extension 사용 방법 PHP의 컬 : REST API에서 PHP Curl Extension 사용 방법 Mar 14, 2025 am 11:42 AM

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Codecanyon에서 12 개의 최고의 PHP 채팅 스크립트 Codecanyon에서 12 개의 최고의 PHP 채팅 스크립트 Mar 13, 2025 pm 12:08 PM

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

2025 PHP 상황 조사 발표 2025 PHP 상황 조사 발표 Mar 03, 2025 pm 04:20 PM

2025 PHP Landscape Survey는 현재 PHP 개발 동향을 조사합니다. 개발자와 비즈니스에 대한 통찰력을 제공하는 프레임 워크 사용, 배포 방법 및 과제를 탐색합니다. 이 조사는 현대 PHP Versio의 성장을 예상합니다

라 라벨에서 알림 라 라벨에서 알림 Mar 04, 2025 am 09:22 AM

이 기사에서는 Laravel 웹 프레임 워크에서 알림 시스템을 탐색 할 것입니다. Laravel의 알림 시스템을 사용하면 다른 채널을 통해 사용자에게 알림을 보낼 수 있습니다. 오늘은 알림을 보낼 수있는 방법에 대해 논의합니다

See all articles