サムネイル php クラスを生成するには、thumbnailimage.php という名前の新しいファイルを作成します。ファイル名には大文字を使用しないことをお勧めします。
-
- define ( 'MAX_IMG_SIZE', 100000 );
- // サポートされている画像タイプ
- define ( 'THUMB_JPEG', 'image/jpeg' );
- define ( 'THUMB_PNG', 'image/png ' );
- define ( 'THUMB_GIF', 'image/gif' );
- // インターレースモード
- define ( 'INTERLACE_OFF', 0 );
- define ( 'INTERLACE_ON', 1 );
- // 出力モード
- define ( 'STDOUT', '' );
- // 空の定数
- define ( 'NO_LOGO', '' );
- define ( 'NO_LABEL', '' );
- // ロゴとラベルの位置
- define ( 'POS_LEFT', 0 );
- define ( 'POS_RIGHT', 1 );
- define ( 'POS_CENTER', 2 );
- define ( 'POS_TOP', 3 );
- define ( 'POS_BOTTOM', 4 );
- // エラーメッセージ
- define ( 'E_001', 'ファイル %s が存在しません' );
- define ( 'E_002', '%s からの画像データの読み取りに失敗しました' );
- define ( 'E_003', '%s のコピーを作成できません' );
- define ( 'E_004', 'ロゴ画像をコピーできません' );
- define ( 'E_005', '作成できません最終画像' );
- // ****************************************** ***********************************
- // クラス定義
- // ******** ************************************************* ******************
- class ThumbnailImage
- {
- // *********************** ************************************************* **
- // パブリックプロパティ
- // *************************************** *************************************
- var $src_file; // ソース画像ファイル
- var $dest_file; // 宛先画像ファイル
- var $dest_type; // 出力先の画像タイプ
- var $interlace; // 宛先画像のインターレース モード
- var $jpeg_quality; // 結果の JPEG の品質
- var $max_width; // サムネイルの最大幅
- var $max_height; // サムネイルの最大の高さ
- var $fit_to_max; // 小さな画像を拡大しますか?
- var $logo; // ロゴパラメータの配列
- var $label; // ラベルパラメータの配列
- // ***************************************** ************************************
- // クラスコンストラクター
- // ******* ************************************************* *******************
- /*
- 説明:
- プロパティのデフォルト値を定義します。
- プロトタイプ:
- void ThumbImg ( string src_file = '' )
- パラメーター:
- src_file - ソース画像ファイル名
- */
- function ThumbnailImage ( $src_file = '' )
- {
- $this->src_file = $src_file;
- $this->dest_file = STDOUT;
- $this->dest_type = THUMB_JPEG;
- $this->interlace = INTERLACE_OFF;
- $this->gt;jpeg_quality = -1;
- $this->max_width = 100;
- $this->max_height = 90;
- $this->fit_to_max = FALSE ;
- $this->logo['file'] = NO_LOGO;
- $this->logo['vert_pos'] = POS_TOP;
- $this->logo['horz_pos'] = POS_LEFT;
- $this- >label['text'] = NO_LABEL;
- $this->label['vert_pos'] = POS_BOTTOM;
- $this->label['horz_pos'] = POS_RIGHT;
- $this->label[' font'] = '';
- $this->label['size'] = 20;
- $this->label['color'] = '#000000';
- $this->label['angle '] = 0;
- }
- // *************************************** *************************************
- // プライベートメソッド
- // ****** ************************************************* ********************
- /*
- 説明:
- 16 進数の色文字列から 10 進数の色成分を抽出します。
- プロトタイプ:
- array ParseColor ( string hex_color )
- パラメーター:
- hex_color - '#rrggbb' 形式の色
- 戻り値:
- 赤、緑、青の色成分の 10 進数値。
- */
- function ParseColor ( $hex_color )
- {
- if ( strpos ( $hex_color, '#' ) == = 0 )
- $hex_color = substr ( $hex_color, 1 );
- $r = hexdec ( substr ( $hex_color, 0, 2 ) );
- $g = hexdec ( substr ( $hex_color, 2, 2 ) );
- $b = hexdec ( substr ( $hex_color, 4, 2 ) );
- return array ( $r, $g, $b );
- }
- /*
- 説明:
- 画像データを文字列として取得します。
- Luis に感謝します。この関数のアイデアについては Larrateguy に感謝します。
- プロトタイプ:
- string GetImageStr ( string image_file )
- パラメーター:
- image_file - 画像のファイル名
- 戻り値:
- 画像ファイルの内容 string.
- */
- function GetImageStr ( $image_file )
- {
- if ( function_exists ( 'file_get_contents' ) )
- {
- $str = @file_get_contents ( $image_file );
- if ( ! $str )
- {
- $err = sprintf( E_002, $image_file );
- trigger_error( $err, E_USER_ERROR );
- }
- return $str;
- }
- $f = fopen ( $image_file, 'rb' );
- if ( ! $f )
- {
- $err = sprintf( E_002, $image_file );
- trigger_error( $err, E_USER_ERROR );
- }
- $fsz = @filesize ( $image_file );
- if ( ! $fsz )
- $fsz = MAX_IMG_SIZE;
- $str = fread ( $f, $fsz );
- fclose ( $f );
- return $str;
- }
- /*
- 説明:
- ファイルから画像を読み込みます。
- プロトタイプ:
- resource LoadImage ( string image_file, int &image_width, int &image_height )
- パラメーター:
- image_file - 画像のファイル名
- image_width - 読み込まれた画像の幅
- image_height - 高さロードされた画像
- 戻り値:
- 指定されたファイルから取得した画像を表す画像識別子
- */
- function LoadImage ( $image_file, &$image_width, &$image_height )
- {
- $image_width = 0;
- $image_height = 0;
- $image_data = $this->GetImageStr( $image_file );
- $image = imagecreatefromstring ( $image_data );
- if ( ! $image )
- {
- $err = sprintf( E_003, $image_file );
- trigger_error( $err , E_USER_ERROR );
- }
- $image_width = imagex ( $image );
- $image_height = imagey ( $image );
- return $image;
- }
- /*
- 説明:
- ソース画像の幅と高さからサムネイル画像のサイズを計算します.
- プロトタイプ:
- array GetThumbSize ( int src_width, int src_height )
- パラメーター:
- src_width - ソース画像の幅
- src_height - ソース画像の高さ
- 戻り値:
- 2 つの要素を持つ配列。インデックス 0 にはサムネイル画像の幅が含まれ、インデックス 1 には高さが含まれます。 this->max_height;
- $x_ratio = $max_width / $src_width;
- $y_ratio = $max_height / $src_height;
- $is_small = ( $src_width <= $max_width && $src_height <= $max_height );
- if ( ! $this->fit_to_max && $is_small )
- {
- $dest_width = $src_width;
- $dest_height = $src_height;
- }
- elseif ( $x_ratio * $src_height < $max_height )
- {
- $dest_width = $ max_width;
- $dest_height = ceil ( $x_ratio * $src_height );
- }
- else
- {
- $dest_width = ceil ( $y_ratio * $src_width );
- $dest_height = $max_height;
- }
- return array ( $dest_width, $dest_height );
- }
- /*
- 説明:
- サムネイルにロゴ画像を追加します。
- プロトタイプ:
- void AddLogo ( int sum_width, int sum_height, resource &thumb_img )
- パラメーター:
- summ_width - サムネイル画像の幅
- summ_height - 高さサムネイル画像
- summ_img - サムネイル画像識別子
- */
- function AddLogo ( $thumb_width, $thumb_height, &$thumb_img )
- {
- extract ( $this->logo );
- $logo_image = $this->LoadImage ( $ファイル, $logo_width, $logo_height );
- if ( $vert_pos == POS_CENTER )
- $y_pos = ceil ( $thumb_height / 2 - $logo_height / 2 );
- elseif ($vert_pos == POS_BOTTOM)
- $y_pos = $thumb_height - $logo_height;
- else
- $y_pos = 0;
- if ( $horz_pos == POS_CENTER )
- $x_pos = ceil ( $thumb_width / 2 - $logo_width / 2 );
- elseif ( $horz_pos == POS_RIGHT )
- $x_pos = $thumb_width - $logo_width;
- else
- $x_pos = 0;
- if ( ! imagecopy ( $thumb_img, $logo_image, $x_pos, $y_pos, 0, 0,
- $logo_width, $logo_height ) )
- trigger_error( E_004, E_USER_ERROR );
- }
- /*
- 説明:
- ラベルテキストをサムネイルに追加します。
- プロトタイプ:
- void AddLabel ( int sum_width, int sum_height, resource &thumb_img )
- パラメーター:
- summ_width - サムネイル画像の幅
- summ_height - サムネイル画像の高さ
- summ_img - サムネイル画像の識別子
- */
- function AddLabel ( $thumb_width, $thumb_height , &$thumb_img )
- {
- extract ( $this->label );
- list( $r, $g, $b ) = $this->ParseColor ( $color );
- $color_id = imagecolorallocate ( $thumb_img ) , $r, $g, $b );
- $text_box = imagettfbbox ( $size, $angle, $font, $text );
- $text_width = $text_box [ 2 ] - $text_box [ 0 ];
- $text_height = abs ( $text_box [ 1 ] - $text_box [ 7 ] );
- if ( $vert_pos == POS_TOP )
- $y_pos = 5 + $text_height;
- elseif ( $vert_pos == POS_CENTER )
- $y_pos = ceil( $thumb_height / 2 - $text_height / 2 );
- elseif ( $vert_pos == POS_BOTTOM )
- $y_pos = $thumb_height - $text_height;
- if ( $horz_pos == POS_LEFT )
- $x_pos = 5;
- elseif ( $horz_pos == POS_CENTER )
- $x_pos = ceil( $thumb_width / 2 - $text_width / 2 );
- elseif ( $horz_pos == POS_RIGHT )
- $x_pos = $thumb_width - $text_width -5;
- imagettftext ( $thumb_img, $size, $角度、$x_pos、$y_pos、
- $color_id、$font、$text );
- }
- /*
- 説明:
- サムネイル画像をブラウザに出力します。
- プロトタイプ:
- void OutputThumbImage ( resource dest_image )
- パラメータ:
- dest_img - サムネイル画像識別子
- */ 出力缩略图
- function OutputThumbImage ( $dest_image )
- {
- imageinterlace ( $dest_image, $this->interlace );
- header ( 'Content-type: ' . $this->dest_type );
- if ( $this->dest_type == THUMB_JPEG )
- imagejpeg ( $dest_image, ' ', $this->jpeg_quality );
- elseif ( $this->dest_type == THUMB_GIF )
- imagegif($dest_image);
- elseif ( $this->dest_type == THUMB_PNG )
- imagepng ( $dest_image );
- }
- /*
- 説明:
- サムネイル画像をディスクファイルに保存します。
- プロトタイプ:
- void SaveThumbImage ( string image_file, resource dest_image )
- パラメータ:
- image_file - 保存先ファイル名
- dest_img - サムネイル画像識別子
- */
- 関数SaveThumbImage ( $image_file, $dest_image )
- {
- imageinterlace ( $dest_image, $this->gt;interlace );
- if ( $this->dest_type == THUMB_JPEG )
- imagejpeg ( $dest_image, $this->dest_file, $this->jpeg_quality );
- elseif ( $this->dest_type == THUMB_GIF )
- imagegif ( $dest_image, $this->dest_file );
- elseif ( $this->dest_type == THUMB_PNG )
- imagepng ( $dest_image, $this->dest_file );
- }
- // ******************************** ********************************************
- // パブリックメソッド
- / / ************************************************ ****************************
- /*
- 説明:
- パラメータの
- 値に従って、サムネイル画像をブラウザまたはディスクファイルに出力します.
- プロトタイプ:
- void Output ( )
- */ 生成略図
- function Output()
- {
- $src_image = $this->LoadImage($this->src_file, $src_width, $src_height);
- $ dest_size = $this->GetThumbSize($src_width, $src_height);
- $dest_width=$dest_size[0];
- $dest_height=$dest_size[1];
- $dest_image=imagecreatetruecolor($dest_width, $dest_height);
- if (!$dest_image)
- trigger_error(E_005, E_USER_ERROR);
- imagecopyresampled( $dest_image, $src_image, 0, 0, 0, 0,
- $dest_width, $dest_height, $src_width, $src_height );
- if ($this ->logo['file'] != NO_LOGO)
- $this->AddLogo($dest_width, $dest_height, $dest_image);
- if ($this->label['text'] != NO_LABEL)
- $this->AddLabel($dest_width, $dest_height, $dest_image);
- if ($this->dest_file == STDOUT)
- $this->OutputThumbImage ( $dest_image );
- else
- $this-> SaveThumbImage ( $this->dest_file, $dest_image );
- imagedestroy ( $src_image );
- imagedestroy ( $dest_image );
- }
- } // クラス定義の終了
- ?>
复制代
使用方法:
1、首先引用该php文件(不要告诉我不会)
2、调用代码
- $tis = new ThumbnailImage();
- $tis->src_file = "这里写源文件の経路"
- $tis->dest_type = THUMB_JPEG;// 生成される画像の種類は jpg
- $ tis->dest_file = '这里写目标文件の経路';
- $tis->max_width = 120;//自适应大小,ただし最大宽度は120
- $tis->max_height = 4000; //自适应大小、ただし最大高さは 4000 です
- $tis->Output();
-
-
复制码
代码关键 在:
max_width と max_height、
一般に、絵以外の絵には特別な性質があり、省略された絵が生成される場合もまったく問題がないと考えられています。
|