最近几天看了一下PHP的图片处理方面的功能,以前这方面的需求比较少,也就没怎么看,最近有空看了一下。感觉图片处理一些简单的功能还可以,复杂的就算了,GD库都2.0.1了,还是不支持中文,看了几篇文章,想使用中文只能先将GB2312转换成UNICODE再写入图片,太麻烦了,索性只使用英文算了。
在图像生成部分可以定义图片的最大高,宽,比较适用于新闻及相册等系统。
GD2.0.1在图片处理上有很大提高,我试了下imageCopyResized和imageCopyResampled,后者处理的图片明显好于前者,据手册上讲后者对改变大小后的图片重新采样基本保持不失真,生成缩略图的效果还真不错。
----------------------------------------------- --- ----------------
以下はクラスです
---------------------- ---
/ /========================================= ======== ===
// ファイル名:GDImage.inc.php
// 概要: 画像処理プログラム
// 作者: Ice_berg16 (夢のかかし)
// CreateTime: 2004-10-12
// LastModifed:2004-10-12
// copyright (c)2004 Ice_berg16@163.com
//========= ========= ===================================
class GDImage
{
var $sourcePath; //画像の保存パス
var $galleryPath; //画像のサムネイルの保存パス
var $toFile = false; var $fontName; // 使用する TTF フォント Name
var $maxWidth = 500 // 画像の最大幅
var $maxHeight = 600; // 画像の最大高さ
//== ============ =============================
// 関数: GDImage( $sourcePath,$galleryPath, $fontPath)
// 関数: コンストラクター
// パラメーター: $sourcePath 画像ソース パス (最後の "/" を含む)
// パラメーター: $galleryPath 生成された画像パス
// パラメーター: $fontPath フォント パス
//=================================== =======
関数 GDImage($sourcePath, $galleryPath, $fontPath)
{
$this->sourcePath = $sourcePath = $ギャラリーパス;
$this->fontName = $fontPath"
}
//=========== =========== ==============
// 関数: makeThumb($sourFile,$width=128,$height=128)
// 機能: サムネイルを生成 (ブラウザ デバイスに出力)
// パラメータ: $sourFile 画像ソース ファイル
// パラメータ: $width 生成されたサムネイルの幅
// パラメータ: $height 高さ生成されたサムネイルの
// Return: 0 失敗時と成功時に生成された画像パスを返します
//======================== ================== =====
関数 makeThumb($sourFile,$width=128,$height=128)
{
$ imageInfo = $this->getInfo($sourFile);
$sourFile = $this->sourcePath;
$newName = substr($imageInfo["name"], 0, strrpos($) imageInfo["name"], ".")) . "_thumb.jpg" ;
switch ($imageInfo["type"])
{
case 1: //gif
$img = imagecreatefromgif($sourFile);
break;
ケース 2: //jpg
$img = imagecreatefromjpeg($sourFile);
break; $img = imagecreatefrompng($sourFile);
break;
default :
break;
if (!$img)
🎜>
$width = ($width > $imageInfo["width "]) ? $imageInfo["width"] : $width
$height = ($height > $imageInfo["height") ]) $imageInfo["高さ"] : $高さ;
$srcH = $imageInfo["高さ"]; $width > $srcH * $height)
$height =round( $srcH * $width / $srcW);
else
$width =round($srcW * $height / $srcH);
//*
if (function_exists("imagecreatetruecolor")) //GD2.0.1
{
$new = imagecreatetruecolor($width, $height);
ImageCopyResampled($new, $img, 0, 0, 0, 0, $width, $height, $imageInfo["width"], $imageInfo["height"]);
}
else
{
$ new = imagecreate($width, $height);
ImageCopyResize($new , $img, 0, 0, 0, 0, $width, $height, $imageInfo["width"], $imageInfo["height" ]);
}
//*/
if ($this->toFile)
{
if (file_exists($this->galleryPath . $newName))
unlink($this->galleryPath . $newName);
ImageJPEG ($new, $this->galleryPath . $newName);
return $this->galleryPath .
else
{
ImageJPEG($new);
ImageDestroy($new)
}
//================ ==========================
// 関数:waterMark($sourFile, $text)
// 関数: 画像を与える ウォーターマークを追加
// パラメーター: $sourFile 画像ファイル名
// パラメーター: $text テキスト配列 (2 つの文字列を含む)
// 戻り値: 1 成功した場合は、生成された画像パスを返します
//============================== ============
関数 WaterMark ($sourFile, $text)
{
$imageInfo = $this->getInfo($sourFile); = $this->sourcePath . $sourFile;
$newName = substr($imageInfo["name"], 0, strrpos($imageInfo["name"], ".")) . ;
switch ($imageInfo["type"])
{
ケース 1: //gif
$imagecreatefromgif($sourFile);
ケース 2: //jpg
$img = imagecreatefromjpeg($sourFile);
break;
ケース 3: //png
$img = imagecreatefrompng($sourFile);
default; :
return 0;
break;
if (!$img)
return 0;
$width = ($this->maxWidth > $ imageInfo["width"]) $imageInfo["width"] : $this->maxWidth;
$height = ($this->maxHeight > $imageInfo["height"]) ? "高さ"] : $this->maxHeight;
$srcW = $imageInfo["幅"]
$srcH = $imageInfo["高さ"]; > $srcH * $height)
$height =round($srcH * $width / $srcW);
else
$width =round($srcW * $height / $srcH); >//*
if (function_exists("imagecreatetruecolor")) //GD2.0.1
{
$new = imagecreatetruecolor($width, $height);
ImageCopyResampled($new, $img, 0, 0, 0, 0, $width, $height, $imageInfo["width"], $imageInfo["height"]);
}
else
{
$new = imagecreate($width, $height);
ImageCopyResize($new, $img, 0, 0, 0, 0, $width, $height, $imageInfo["width"], $imageInfo["height"]);
}
$white = imageColorAllocate($new, 255, 255, 255);
$black = imageColorAllocate($new, 0, 0, 0);
$alpha = imageColorAllocateAlpha($new, 230, 230, 230, 40);
//$rectW = max(strlen($text[0]),strlen($text[1]))*7;
ImageFilledRectangle($new, 0, $height-26, $width, $height, $alpha);
ImageFilledRectangle($new, 13, $height-20, 15, $height-7, $black);
ImageTTFText($new, 4.9, 0, 20, $height-14, $black, $this->fontName, $text[0]);
ImageTTFText($new, 4.9, 0, 20, $height-6, $black, $this->fontName, $text[1]);
//*/
if ($this->toFile)
{
if (file_exists($this->galleryPath . $newName))
unlink($this-> ;ギャラリーパス .$newName);
ImageJPEG($new, $this->galleryPath . $newName);
$this->galleryPath を返します。 $新しい名前;
}
else
{
ImageJPEG($new);
}
ImageDestroy($new);
ImageDestroy($img);
}
//====================================== ====
// 関数: displayThumb($file)
// 機能: 表示指定画像の略図
// パラメータ: $file 文件名
// 戻り値: 0 画像なし存在
//==========================================
関数 displayThumb($file)
{
$thumbName = substr($file, 0, strrpos($file, ".")) 。 "_thumb.jpg";
$file = $this->galleryPath 。 $親指名;
if (!file_exists($file))
return 0;
$html = "";
エコー $html;
}
//======================================== =
// 関数: displayMark($file)
// 機能: 指定された画像の水印图を表示
// パラメータ: $file 文件名
// 戻り値: 0 画像なし
//==========================================
関数 displayMark ($file)
{
$markName = substr($file, 0, strrpos($file, ".")) 。 "_マーク.jpg";
$file = $this->galleryPath 。 $マーク名;
if (!file_exists($file))
return 0;
$html = "";
エコー $html;
}
//======================================== =
// 関数: getInfo($file)
// 機能: 戻り画像情報
// パラメータ: $file 文件路径
// 戻り: 画像情報数组
//= =========================================
関数 getInfo($file)
{
$file = $this->sourcePath . $ファイル;
$data = getimagesize($file);
$imageInfo["width"] = $data[0];
$imageInfo["高さ"]= $data[1];
$imageInfo["type"] = $data[2];
$imageInfo["name"] = ベース名($file);
$imageInfo を返します;
}
}
?>
----------------------------------
次は使用方法です
この使用方法了一04B_08__.TTF字体
使用类的時候指定该字体路径即可
---------------------------- -------
require_once("GDImage.inc.php");
//header("Content-type: image/jpeg");//浏览器の警告を忘れ打开这个
$img = new GDImage(IB_UPLOAD_PATH, IB_GALLERY, IB_TEMP);
$text = array("ice-berg.org","全著作権所有");
$img->maxWidth = $img->maxHeight = 300;
$img->toFile = true;
$img->waterMark("mm.jpg", $text);
$img->makeThumb("mm.jpg");
$img->displayThumb("mm.jpg");
$img->displayMark("mm.jpg");