PHP で適応サイズのサムネイルを生成する方法

WBOY
リリース: 2016-07-25 09:12:55
オリジナル
1018 人が閲覧しました

サムネイル php クラスを生成するには、thumbnailimage.php という名前の新しいファイルを作成します。ファイル名には大文字を使用しないことをお勧めします。

  1. define ( 'MAX_IMG_SIZE', 100000 );
  2. // サポートされている画像タイプ
  3. define ( 'THUMB_JPEG', 'image/jpeg' );
  4. define ( 'THUMB_PNG', 'image/png ' );
  5. define ( 'THUMB_GIF', 'image/gif' );
  6. // インターレースモード
  7. define ( '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. define ( 'POS_CENTER', 2 );
  18. define ( 'POS_TOP', 3 );
  19. define ( '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. class ThumbnailImage
  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->gt;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. array ParseColor ( string hex_color )
  84. パラメーター:
  85. hex_color - '#rrggbb' 形式の色
  86. 戻り値:
  87. 赤、緑、青の色成分の 10 進数値。
  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 - 画像のファイル名
  106. 戻り値:
  107. 画像ファイルの内容 string.
  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. resource LoadImage ( string image_file, int &image_width, int &image_height )
  139. パラメーター:
  140. image_file - 画像のファイル名
  141. image_width - 読み込まれた画像の幅
  142. image_height - 高さロードされた画像
  143. 戻り値:
  144. 指定されたファイルから取得した画像を表す画像識別子
  145. */
  146. function 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 = imagex ( $image );
  158. $image_height = imagey ( $image );
  159. return $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 にはサムネイル画像の幅が含まれ、インデックス 1 には高さが含まれます。 this->max_height;
  171. $x_ratio = $max_width / $src_width;
  172. $y_ratio = $max_height / $src_height;
  173. $is_small = ( $src_width <= $max_width && $src_height <= $max_height );
  174. if ( ! $this->fit_to_max && $is_small )
  175. {
  176. $dest_width = $src_width;
  177. $dest_height = $src_height;
  178. }
  179. elseif ( $x_ratio * $src_height < $max_height )
  180. {
  181. $dest_width = $ max_width;
  182. $dest_height = ceil ( $x_ratio * $src_height );
  183. }
  184. else
  185. {
  186. $dest_width = ceil ( $y_ratio * $src_width );
  187. $dest_height = $max_height;
  188. }
  189. return array ( $dest_width, $dest_height );
  190. }
  191. /*
  192. 説明:
  193. サムネイルにロゴ画像を追加します。
  194. プロトタイプ:
  195. void AddLogo ( int sum_width, int sum_height, resource &thumb_img )
  196. パラメーター:
  197. summ_width - サムネイル画像の幅
  198. summ_height - 高さサムネイル画像
  199. summ_img - サムネイル画像識別子
  200. */
  201. function AddLogo ( $thumb_width, $thumb_height, &$thumb_img )
  202. {
  203. extract ( $this->logo );
  204. $logo_image = $this->LoadImage ( $ファイル, $logo_width, $logo_height );
  205. if ( $vert_pos == POS_CENTER )
  206. $y_pos = ceil ( $thumb_height / 2 - $logo_height / 2 );
  207. elseif ($vert_pos == POS_BOTTOM)
  208. $y_pos = $thumb_height - $logo_height;
  209. else
  210. $y_pos = 0;
  211. if ( $horz_pos == POS_CENTER )
  212. $x_pos = ceil ( $thumb_width / 2 - $logo_width / 2 );
  213. elseif ( $horz_pos == POS_RIGHT )
  214. $x_pos = $thumb_width - $logo_width;
  215. else
  216. $x_pos = 0;
  217. if ( ! imagecopy ( $thumb_img, $logo_image, $x_pos, $y_pos, 0, 0,
  218. $logo_width, $logo_height ) )
  219. trigger_error( E_004, E_USER_ERROR );
  220. }
  221. /*
  222. 説明:
  223. ラベルテキストをサムネイルに追加します。
  224. プロトタイプ:
  225. void AddLabel ( int sum_width, int sum_height, resource &thumb_img )
  226. パラメーター:
  227. summ_width - サムネイル画像の幅
  228. summ_height - サムネイル画像の高さ
  229. summ_img - サムネイル画像の識別子
  230. */
  231. function AddLabel ( $thumb_width, $thumb_height , &$thumb_img )
  232. {
  233. extract ( $this->label );
  234. list( $r, $g, $b ) = $this->ParseColor ( $color );
  235. $color_id = imagecolorallocate ( $thumb_img ) , $r, $g, $b );
  236. $text_box = imagettfbbox ( $size, $angle, $font, $text );
  237. $text_width = $text_box [ 2 ] - $text_box [ 0 ];
  238. $text_height = abs ( $text_box [ 1 ] - $text_box [ 7 ] );
  239. if ( $vert_pos == POS_TOP )
  240. $y_pos = 5 + $text_height;
  241. elseif ( $vert_pos == POS_CENTER )
  242. $y_pos = ceil( $thumb_height / 2 - $text_height / 2 );
  243. elseif ( $vert_pos == POS_BOTTOM )
  244. $y_pos = $thumb_height - $text_height;
  245. if ( $horz_pos == POS_LEFT )
  246. $x_pos = 5;
  247. elseif ( $horz_pos == POS_CENTER )
  248. $x_pos = ceil( $thumb_width / 2 - $text_width / 2 );
  249. elseif ( $horz_pos == POS_RIGHT )
  250. $x_pos = $thumb_width - $text_width -5;
  251. imagettftext ( $thumb_img, $size, $角度、$x_pos、$y_pos、
  252. $color_id、$font、$text );
  253. }
  254. /*
  255. 説明:
  256. サムネイル画像をブラウザに出力します。
  257. プロトタイプ:
  258. void OutputThumbImage ( resource dest_image )
  259. パラメータ:
  260. dest_img - サムネイル画像識別子
  261. */ 出力缩略图
  262. function OutputThumbImage ( $dest_image )
  263. {
  264. imageinterlace ( $dest_image, $this->interlace );
  265. header ( 'Content-type: ' . $this->dest_type );
  266. if ( $this->dest_type == THUMB_JPEG )
  267. imagejpeg ( $dest_image, ' ', $this->jpeg_quality );
  268. elseif ( $this->dest_type == THUMB_GIF )
  269. imagegif($dest_image);
  270. elseif ( $this->dest_type == THUMB_PNG )
  271. imagepng ( $dest_image );
  272. }
  273. /*
  274. 説明:
  275. サムネイル画像をディスクファイルに保存します。
  276. プロトタイプ:
  277. void SaveThumbImage ( string image_file, resource dest_image )
  278. パラメータ:
  279. image_file - 保存先ファイル名
  280. dest_img - サムネイル画像識別子
  281. */
  282. 関数SaveThumbImage ( $image_file, $dest_image )
  283. {
  284. imageinterlace ( $dest_image, $this->gt;interlace );
  285. if ( $this->dest_type == THUMB_JPEG )
  286. imagejpeg ( $dest_image, $this->dest_file, $this->jpeg_quality );
  287. elseif ( $this->dest_type == THUMB_GIF )
  288. imagegif ( $dest_image, $this->dest_file );
  289. elseif ( $this->dest_type == THUMB_PNG )
  290. imagepng ( $dest_image, $this->dest_file );
  291. }
  292. // ******************************** ********************************************
  293. // パブリックメソッド
  294. / / ************************************************ ****************************
  295. /*
  296. 説明:
  297. パラメータの
  298. 値に従って、サムネイル画像をブラウザまたはディスクファイルに出力します.
  299. プロトタイプ:
  300. void Output ( )
  301. */ 生成略図
  302. function Output()
  303. {
  304. $src_image = $this->LoadImage($this->src_file, $src_width, $src_height);
  305. $ dest_size = $this->GetThumbSize($src_width, $src_height);
  306. $dest_width=$dest_size[0];
  307. $dest_height=$dest_size[1];
  308. $dest_image=imagecreatetruecolor($dest_width, $dest_height);
  309. if (!$dest_image)
  310. trigger_error(E_005, E_USER_ERROR);
  311. imagecopyresampled( $dest_image, $src_image, 0, 0, 0, 0,
  312. $dest_width, $dest_height, $src_width, $src_height );
  313. if ($this ->logo['file'] != NO_LOGO)
  314. $this->AddLogo($dest_width, $dest_height, $dest_image);
  315. if ($this->label['text'] != NO_LABEL)
  316. $this->AddLabel($dest_width, $dest_height, $dest_image);
  317. if ($this->dest_file == STDOUT)
  318. $this->OutputThumbImage ( $dest_image );
  319. else
  320. $this-> SaveThumbImage ( $this->dest_file, $dest_image );
  321. imagedestroy ( $src_image );
  322. imagedestroy ( $dest_image );
  323. }
  324. } // クラス定義の終了
  325. ?>
复制代

使用方法: 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();
复制码
代码关键 在: max_width と max_height、 一般に、絵以外の絵には特別な性質があり、省略された絵が生成される場合もまったく問題がないと考えられています。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート