產生縮圖的php類,新建一個檔案叫做 thumbnailimage.php,檔案名稱最好不要用大寫。
-
-
define ('MAX_IMG_SIZE', 100000 );
- //支援的影像類型
- define ('THUMB_J🎜>//支援的圖片類型
- define ('THUMBPEG,', ' /jpeg' );
- define ( 'THUMB_PNG', 'image/png' );
- define ( 'THUMB_GIF', 'image/gif' );
- // 隔行掃描模式
- define (gif' );
- // 隔行掃描模式
- define (gif ' INTERLACE_OFF', 0 );
- define ( 'INTERLACE_ON', 1 );
- //輸出模式
- define ('STDOUT', '' );
- //空常數
- define ( 'NO_LOGO', '' );
- define ( 'NO_LABEL', '' );
- //Logo和標籤定位
- 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 Thumbnail. > {
- $this -> src_file = $src_file;
- $this->dest_file = STDOUT;
- $this->dest_type = THUMB_JPEG;
- $this->interlace = INTERLACE_OFFOFF $this- >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;
- }
- // ************************ ********** ******************************************** **
- / / 私有方法
- // **************************************** ** ****************************************
- /*
- 說明:
- 從十六進位顏色字串中提取十進位顏色分量。
- 原型:
- array ParseColor ( string hex_color )
- 參數:
- hex_color - '#rrggbb' 格式的顏色
- 傳回:
- 紅色、綠色和藍色分量的十進位值。
- */
- 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 ) );
- 傳回陣列( $r, $g, $b );
- }
- /*
- 說明:
- 以字串形式擷取影像資料。
- 感謝 Luis Larrateguy 提出此函式的想法。
- 原型:
- string GetImageStr ( string image_file )
- 參數:
- image_file - 檔案名稱image
- 傳回:
- 映像檔內容字串。
- */
- function GetImageStr ( $image_file )
- {
- if ( function_exists ( 'file_get_contents' ) )
- {
- $str = @file_get_contents ($image); 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 ); $str = fread ( $f, $fsz );
- fclose $f );
- return $str;
- }
- /*
- 說明:
- 從檔案載入圖片。
- 原型:
- resources LoadImage ( string image_file, int &image_width, int &image_height )
- 參數:
- image_file - 映像的檔案名稱載入🎜> image_widight的高度
- 回傳:
- 表示從給定檔案。
- */
- function LoadImage ( $image_file, &$image_width, &$image_height )
- {
- $image_width = 0;
- $image_height = 0; ->GetImageStr( $image_file );
- $image = imagecreatefromstring ( $image_data );
- if ( ! $image )
- {
- $err = sprintf( E_003,$image_file ) ; trigger_error( $err, E_USER_ERROR );
- }
- $image_width = imagesx ( $image );
- $image_height = imagesy ( $image );
- return $image;
- /*
- 說明:
- 根據來源影像的寬度和高度計算縮圖尺寸。
- 原型:
- array GetThumbSize ( int src_width, int src_height )
- 參數:
- src_width - 來源影像的寬度
- src_height - 來源影像的高度傳回2 個元素的陣列。索引 0 包含縮圖
- 的寬度,索引 1 包含縮圖
- 的高度。
- */ 產生縮圖
- function GetThumbSize ( $src_width, $src_height )
- {
- $max_width = $this ->max_width;
- $max_height = $ > $x_ratio = $max_width / $src_width;
- $y_ratio = $max_height / $src_height;
- $is_small = ( $ src_width fit_to_max && $is_small )
- {
- $dest_width = $src_width;
- $dest_height = $src_height;
- }
- elseif( $max_ratioif. 🎜> {
- $dest_width = $max_width;
- $dest_height = ceil ( $x_ratio * $src_height ) ;
- }
- else
- { $dest_height = $max_height;
- }
- 返回數組( $dest_width, $dest_height );
- }
- /*
- 描述:
- 將徽標圖像新增到縮圖。
- 原型:
- void AddLogo ( intthumb_width, intthumb_height, resources &thumb_img )
- 參數:
- thumb_width - 縮略圖的寬度 */
- function AddLogo ( $thumb_width, $thumb_height, &$thumb_img )
- {
- extract ( $this->logo );
- $logo_image = $this-this file, $logo_width, $logo_height );
- if ( $vert_pos == POS_CENTER )
- $y_pos = ceil ( $thumb_height / 2 - $logo_height / 2 ); else==P.
- $y_pos = $thumb_height - $logo_height;
- else
- $ y_pos = 0;
- if ( $horz_pos == POS_CENTER )
- $x_pos = cewidwumb. / 2 );
- elseif ( $horz_pos == POS_RIGHT )
- $x_pos = $thumb_width - $logo_width;
- else
- $x_pos = 0; else
- $x_pos = 0; $logo_width, $logo_height ) )
- trigger_error( E_004, E_USER_ERROR ); 原型:
- void AddLabel ( intthumb_width, intthumb_height, resources &thumb_img )
- 參數:
- thumb_width - 縮略圖的寬度 */
- function AddLabel ( $thumb_width, $thumb_height, &$thumb_img )
- {
- extract ( $this->label );
- list( $r, $g, $bb ) = $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 ); vert_pos == POS_BOTTOM )
- $y_pos = $thumb_height - $text_height;
- if ( $horz_pos == POS_LEFT )
- $x_pos = 5 ;
- elseif (Ilhorz_DisalfDENDat = 5 ; elseif (Hhorz_pos)> 問題 elseif ( $horz_pos == POS_RIGHT )
- $x_pos = $thumb_width - $text_width - $text_width - > size, $angle, $x_pos, $y_pos,
- $color_id, $font, $text );
- }
- /*
- 說明:
- 將縮圖輸出到瀏覽器。
- 原型:
- void OutputThumbImage ( resource dest_image )
- 參數:
- dest_img - 縮圖標識符
- */ 輸出
- function OutputTputimage (> imageinterlace ( $dest_image, $this->interlace );
- header ( 'Content-type: ' . $this-> ;dest_type );
- if ( $this->dest_type == THUMB_JPEG )
- if ( $this->dest_type == THUMB_JPEG )
- jpage ( $dest_image, '', $this->jpeg_quality );
- elseif ( $this->dest_type = = THUMB_GIF )
- imagegif($dest_image); elseif ( $this->3_Ptypeifdest_image); imagepng ( $dest_image );
- }
- /*
- 說明:
- 將縮圖儲存到光碟檔案中。
- 原型:
- void SaveThumbImage ( string image_file, resource dest_image )
- 參數:
- image_file - 目標檔案名稱
- dest_img - 縮圖符> $image_file, $dest_image )
- {
- imageinterlace ( $dest_image, $this->interlace );
- if ( $this->dest_type == THUMB_JPEG )
- $dimage, $dest >dest_file, $this->jpeg_quality );
- elseif ( $this->dest_type == THUMB_GIF )
- imagegif ( $dest_image, $this- >dest_file );
- gifeldse ( = THUMB_PNG )
- imagepng ( $dest_image, $this->dest_file );
- }
- // ***** ****************** ****************************************************** *******
- // 公用方法
- // ***************** ************** **************************************** *********
- /*
- 說明:
- 依照
- 參數值將縮圖輸出到瀏覽器或光碟檔案。
- 原型:
- void Output ( )
- */ 產生每一片
- function Output()
- {
- $src_image = $this->LoadImage($this->src_file, $>src_file, $ src_width, $src_height);
- $dest_size = $this->GetThumbSize($src_width, $src_height);
- $dest_width=$dest_size[0];
- $dest_width=$dest_size[0];
- $ 🎜> $dest_image= imagecreatetruecolor($dest_width, $dest_height);
- if (!$dest_image)
- trigger_error(E_005, E_USER_ERROR); $dest_width, $dest_height, $src_width, $src_height );
- if ($this->logo['file'] != NO_LOGO)
- $this->AddLogo($dest_wid, $ 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 ); 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();
-
-
-
- 複製程式碼
-
-
複製程式碼
程式碼所在:
最大寬度和最大高度,
一般放棄圖片賦予個性,不然的話生成的還是很的。
|
不錯