/**
* 機能: サムネイルの生成
* 著者: phpox
* 日付: Thu May 17 09:57:05 CST 2007
*/
class CreatMiniature
{
//パブリック変数
var $srcFile="" //元の画像
var $echoType //出力画像タイプ、リンク - いいえファイルとして保存 -- ファイルとして保存
var $srcW=""; //元の画像の幅
var $srcH=""; /変数を設定し、初期化します
function SetVar($srcFile,$echoType)
{
if (!file_exists($srcFile)){
echo 'ソース画像ファイルが存在しません!'
exit();
$ this->srcFile=$srcFile;
$this->echoType=$echoType;
$data = GetImageSize($this->srcFile,$info); 2] )
{
ケース 1:
if(!function_exists("imagecreatefromgif")){
echo "GD ライブラリでは GIF 形式の画像を使用できません。Jpeg または PNG 形式を使用してください。Returnexit();
}
$this->im = ImageCreateFromGIF($this->srcFile);
break;
ケース 2:
if(!function_exists("imagecreatefromjpeg")){
echo " GD ライブラリでは jpeg 形式の画像を使用できません。他の形式の画像を使用してください。返す";
exit();
}
$this->im = ImageCreateFromJpeg($this->srcFile);
break;
ケース 3:
$this-> ;im = ImageCreateFromPNG($this->srcFile)
}
$this->srcW=ImageSX($this->srcH=ImageSY($this->); ;im);
}
// 扭曲型缩图を生成
function Distortion($toFile,$toW,$toH)
{
$cImg=$this->CreatImage($this->im,$toW, $toH,0,0,0,0,$this->srcW,$this->srcH);
return $this->EchoImage($cImg,$toFile); }
// 比例配分の図を生成
function Prorate($toFile,$toW,$toH)
{
$toWH=$toW/$toH;
$srcWH=$this->srcW/$this-; >srcH;
if($toWH{
$ftoW=$ftoW*($this->srcH/$this->srcW)
else
{
$ftoH=$toH;
$ftoW=$ftoH*($this->srcW/$this->srcH)
}
if($this->srcW>$toW||$this ->srcH>$toH)
{
$cImg=$this->CreatImage($this->im,$ftoW,$ftoH,0,0,0,0,$this->srcW,$ this->srcH);
return $this->EchoImage($cImg,$toFile)
}
else
{
$cImg=$this->CreatImage($this-) >im,$this->srcW,$this->srcH,0,0,0,0,$this->srcW,$this->srcH);
return $this->EchoImage($cImg,$toFile);
ImageDestroy($cImg);
}
}
//最小裁剪後の缩图を生成
function Cut($toFile,$toW,$toH)
{
$toWH=$toW/$toH;
$srcWH=$this->srcW/$this->srcH;
if($toWH{
$ctoH=$toH;
$ctoW=$ctoH*($this->srcW/$this->srcH);
}
else
{
$ctoW=$toW;
$ctoH=$ctoW*($this->srcH/$this->srcW);
}
$allImg=$this->CreatImage($this->im,$ctoW,$ctoH,0,0,0,0,$this->srcW,$this->srcH);
$cImg=$this->CreatImage($allImg,$toW,$toH,0,0,($ctoW-$toW)/2,($ctoH-$toH)/2,$toW,$toH) ;
return $this->EchoImage($cImg,$toFile);
ImageDestroy($cImg);
ImageDestroy($allImg);
}
//背景埋め込みの缩画像を生成
function BackFill($toFile,$toW,$toH,$bk1=255,$bk2=255,$bk3=255)
{
$toWH=$toW/$toH ;
$srcWH=$this->srcW/$this->srcH;
if($toWH{
$ftoW=$toW;
$ftoH=$ftoW*($this->srcH/$this->srcW);
}
else
{
$ftoH=$toH;
$ftoW=$ftoH*($this->srcW/$this->srcH);
}
if(function_exists("imagecreatetruecolor"))
{
@$cImg=ImageCreateTrueColor($toW,$toH);
if(!$cImg)
{
$cImg=ImageCreate($toW,$toH);
}
}
else
{
$cImg=ImageCreate($toW,$toH);
}
$backcolor = imagecolorallocate($cImg, $bk1, $bk2, $bk3); // 塗りつぶされた背景色
ImageFilledRectangle($cImg,0,0,$toW,$toH,$backcolor);
if($this->srcW>$toW||$this->srcH>$toH)
{
$proImg=$this->CreatImage($this->im,$ftoW,$ftoH, 0,0,0,0,$this->srcW,$this->srcH);
if($ftoW{
ImageCopy($cImg,$proImg,($toW-$ftoW)/2,0,0,0,$ftoW,$ftoH);
}
else if($ftoH{
ImageCopy($cImg,$proImg,0,($toH-$ftoH)/2,0,0,$ftoW,$ftoH);
}
else
{
ImageCopy($cImg,$proImg,0,0,0,0,$ftoW,$ftoH);
}
}
else
{
ImageCopyMerge($cImg,$this->im,($toW-$ftoW)/2,($toH-$ftoH)/2,0,0,$ftoW,$ftoH ,100);
}
return $this->EchoImage($cImg,$toFile);
ImageDestroy($cImg);
}
関数 CreatImage($img,$creatW,$creatH,$dstX,$dstY,$srcX,$srcY,$srcImgW,$srcImgH)
{
if(function_exists("imagecreatetruecolor"))
{
@$ creatImg = ImageCreateTrueColor($creatW,$creatH);
if($creatImg)
ImageCopyResampled($creatImg,$img,$dstX,$dstY,$srcX,$srcY,$creatW,$creatH,$srcImgW,$srcImgH);
else
{
$creatImg=ImageCreate($creatW,$creatH);
ImageCopyResize($creatImg,$img,$dstX,$dstY,$srcX,$srcY,$creatW,$creatH,$srcImgW,$srcImgH);
}
}
else
{
$creatImg=ImageCreate($creatW,$creatH);
ImageCopyResize($creatImg,$img,$dstX,$dstY,$srcX,$srcY,$creatW,$creatH,$srcImgW,$srcImgH);
}
$creatImg を返します;
}
//画像を出力、リンク---出力のみ、ファイルは保存しない。 case "リンク":
if(function_exists('imagejpeg')) return ImageJpeg($img);
それ以外の場合は ImagePNG($img) を返します。
休憩;
case "file":
if(function_exists('imagejpeg')) return ImageJpeg($img,$to_File);
それ以外の場合は、ImagePNG($img,$to_File) を返します。
休憩;
}
}
}
?>
以上は、php による略図の生成 php による略図の生成のタイプコードであり、php による略図の生成に関する内容が含まれており、PHP 教則に関心のある友人の助けになることが望ましいです。