ホームページ > php教程 > php手册 > 2 つの強力な PHP 画像処理クラス 1

2 つの強力な PHP 画像処理クラス 1

WBOY
リリース: 2016-06-13 12:23:33
オリジナル
921 人が閲覧しました

コードをコピー コードは次のとおりです:


/**
* 基本的な画像処理。画像のインデントとウォーターマークの追加を完了するために使用されます。
* ウォーターマーク画像がターゲット画像サイズを超える場合、ウォーターマーク画像はターゲット画像に自動的に適応して縮小されます。
* ウォーターマーク画像は、背景に合わせて設定してください。 結合度
*
* Copyright(c) 2005 by ustb99. All Rights Reserved
*
* 著者に連絡するには、{@link mailto:ustb80@163 までご連絡ください。 .com}
*
* @author by偶然
* @version $Id:thumb.class.php,v 1.9 2006/09/30 09:31:56 zengjian Exp $
* @パッケージシステム
*/
/**
* ThumbHandler
* @access public
*/
/*
使用法:
自動トリミング:
プログラムは画像のサイズに応じて中央から最大の正方形を切り取り、ターゲットサイズに応じて縮小します
$t->setSrcImg("img/test.jpg"); -> ;setCutType(1);//この文はOKです
$t->setDstImg("tmp/new_test.jpg");
$t->createImg(60,60); > 手動カット:
プログラムは指定された位置に従ってソース画像から画像を取得します
$t->setSrcImg("img/test.jpg");
$t->setCutType (2) ;//手動カットを指示
$t->setSrcCutPosition(100, 100);//ソース画像の開始点の座標
$t->setRectangleCut(300, 200); //カットサイズ
$t->setDstImg("tmp/new_test.jpg");
$t->createImg(300,200);
*/
class ThumbHandler
{
var $ dst_img; // ターゲット ファイル
var $h_src; // 新しい画像ハンドル
var $h_mask; $img_create_quality = 100; // 画像生成品質
var $img_display_quality = 80; // 画像表示品質、デフォルトは 75
var $src_w = 0; ; // 元の画像の幅
var $src_h = 0;//元の画像の高さ
var $dst_w = 0;//新しい画像の合計幅
var $dst_h = 0;//合計の高さ新しい画像の
var $ fill_w;// グラフィックの幅を埋める
var $fill_h;// グラフィックの高さを埋める
var $copy_w;// グラフィックの幅をコピー
var $copy_h;// グラフィックをコピーheight
var $src_x = 0;//元の画像描画の開始横座標
var $src_y = 0;//元の画像描画の開始縦座標
var $start_x;//開始座標新しい画像描画の横座標
var $ start_y;// 新しい画像描画の開始縦座標
var $mask_word;// 透かしテキスト
var $mask_img;// 透かし画像
var $mask_pos_x = 0;//ウォーターマークの横座標
var $mask_pos_y = 0; // ウォーターマークの垂直座標
var $mask_offset_x = 5 // ウォーターマークの水平オフセット
var $mask_offset_y = 5; // ウォーターマークの垂直オフセット
var $font_w;// ウォーターマークのフォント幅
var $font_h;// ウォーターマークのフォント高さ
var $mask_w;// ウォーターマークの幅
var $mask_h;// ウォーターマークheight
var $mask_font_color = "#ffffff";// ウォーターマークのテキストの色
var $mask_font = 2;// ウォーターマークのフォント
var $font_size;// サイズ
var $mask_position = 0; // ウォーターマークの位置
var $mask_img_pct = 50;// 画像の結合の度合い、値が大きいほど結合処理は低くなります
var $mask_txt_pct = 50; // テキストの結合の度合いは小さくなります値が小さいほど、マージ処理が遅くなります。
var $img_border_size = 0; // 画像の境界線のサイズ
var $img_border_color;// 画像の境界線の色
var $_flip_x=0;// 水平方向の反転の数
var $_flip_y=0;// 垂直反転数
var $cut_type=0;/ / カットタイプ
var $img_type;// ファイルタイプ
// ファイルタイプ定義、および指摘画像を出力する関数
var $all_type = array(
"jpg" => array ("output"=>"imagejpeg"),
"gif" => array("output "=>"imagegif"),
"png" => array("output"=> ;"imagepng"),
"wbmp" => array("output"=>"image2wbmp "),
"jpeg" =>array("output"=>"imagejpeg")) ;
/**
* コンストラクター
*/
function ThumbHandler()
{
$this->mask_font_color = "#ffffff";
$this->font_size = 12;
/**
* 画像の幅を取得します
*/
function getImgWidth($src)
{
return imagex($src);
}
/**
* 画像の高さを取得します
*/
function getImgHeight($src)
{
return imagey($src);
}
/**
* 画像生成パスを設定します
*
* @param string $src_img 画像生成パス
*/
関数 setSrcImg($src_img, $img_type=null)
{
if (!file_exists($src_img))
{
die("画像が存在しません");
}
if(!emptyempty($img_type))
{
$this ->img_type = $img_type;
}
else
{
$this- >img_type = $this->_getImgType($src_img);
->checkValid($this->img_type);
// file_get_contents 関数には PHP バージョン 4.3 .0 が必要です
$src = ''
if(function_exists("file_get_contents"))
{
$src = file_get_contents($src_img);
}
else
{
$handle = fopen ($src_img, "r"); ($handle))
{
$src .= fgets($fd, 4096)
}
fclose ($handle);
if(emptyempty($src); ))
{
die("画像ソースが空です");
$this->h_src = @ImageCreateFromString($src); $this->getImgWidth($this->h_src);
$this->src_h = $this->getImgHeight($this->h_src);
/**
* 画像生成パスを設定します
*
* @param string $dst_img 画像生成パス
*/
function setDstImg($dst_img)
{
$arr =explode('/',$dst_img);
$last = array_pop($arr);
$path = implode('/',$arr);
$this->_mkdirs($path);
$this->dst_img = $dst_img;
}
/**
* 画像の表示品質を設定します
*
* @param string $nquality
*/
function setImgDisplayQuality($n)
{
$this->img_display_quality = (int)$n;
}
/**
* 画像生成の品質を設定します
*
* @param string $nquality
*/
function setImgCreateQuality($n)
{
$this->img_create_quality = (int)$n;
}
/**
* テキスト透かしを設定します
*
* @param string $word 透かしテキスト
* @param integer $font 透かしフォント
* @param string $color 透かしフォントの色
*/
function setMaskWord($word)
{
$this->mask_word .= $word;
}
/**
* フォントの色を設定します
*
* @param string $color フォントの色
*/
function setMaskFontColor($color="#ffffff")
{
$this->mask_font_color = $color;
}
/**
* 透かしフォントを設定します
*
* @param string|integer $font font
*/
関数 setMaskFont($font=2)
{
if(!is_numeric($font) && !file_exists($font))
{
die("文字文書無し");
}
$this->font = $font;
}
/**
* テキストのフォント サイズを設定します。TrueType フォントにのみ有効です
*/
function setMaskFontSize($size = "12")
{
$this->font_size = $size;
}
/**
* 画像のウォーターマークを設定します
*
* @param string $img ウォーターマーク画像ソース
*/
function setMaskImg($img)
{
$this->mask_img = $img;
}
/**
* ウォーターマークの水平オフセットを設定します
*
* @param integer $x 水平オフセット
*/
function setMaskOffsetX($x)
{
$this->mask_offset_x = (int)$x;
}
/**
* ウォーターマークの垂直オフセットを設定します
*
* @param integer $y 垂直オフセット
*/
function setMaskOffsetY($y)
{
$this->mask_offset_y = (int)$y;
}
/**
* ウォーターマークの位置を指定します
*
* @param integer $position 位置、1: 左上、2: 左下、3: 右上、0/4: 右下
*/
function setMaskPosition($position=0)
{
$this->mask_position = (int)$position;
}
/**
* 画像の結合度を設定します
*
* @param integer $n 結合度
*/
function setMaskImgPct($n)
{
$this->mask_img_pct = (int)$n;
}
/**
* テキストの結合度を設定します
*
* @param integer $n 結合度
*/
function setMaskTxtPct($n)
{
$this->mask_txt_pct = (int)$n;
}
/**
* サムネイルの境界線を設定します
*
* @param (種類) (パラメータ名) (説明)
*/
function setDstImgBorder($size=1, $color="#000000")
{
$this->img_border_size = (int )$サイズ;
$this->img_border_color = $color;
}
/**
* 水平方向に反転
*/
function flickH()
{
$this->_flip_x ;
}
/**
* 上下反転
*/
関数 flipV()
{
$this->_flip_y ;
}
/**
* カットタイプの設定
*
* @param (種類) (パラメータ名) (説明)
*/
function setCutType($type)
{
$this->cut_type = (int)$type;
}
/**
* 画像クリッピングを設定します
*
* @param integer $width 長方形クリッピング
*/
function setRectangleCut($width, $height)
{
$this->fill_w = (int)$width;
$this->fill_h = (int)$height;
}
/**
* ソース画像を切り出す開始座標点を設定します
*
* @param (種類) (パラメータ名) (説明)
*/
function setSrcCutPosition($x, $y)
{
$this->src_x = (int)$x;
$this->src_y = (int)$y;
}
/**
* 画像の作成、メイン関数
* @param integer $a 2 番目のパラメーターが欠落している場合、このパラメーターはパーセンテージとして使用され、
* それ以外の場合は幅の値として使用されます
* @param integer $b スケーリング後の画像の高さ
*/
function createImg($a, $b=null)
{
$num = func_num_args();
if(1 == $num)
{
$r = (int)$a;
if($r {
die("图片缩放比不得小}
$this->img_scale = $r;
$this->_setNewImgSize($r);
}
if(2 == $num)
{
$w = (int)$a;
$h = (int)$b;
if(0 == $w)
{
die("目标宽度0以下");
}
if(0 == $h)
{
die("目标高さが0になることはできません");
}
$this->_setNewImgSize($w, $h);
}
if($this->_flip_x%2!=0)
{
$this->_flipH($this->h_src);
}
if($this->_flip_y%2!=0)
{
$this->_flipV($this->h_src);
}
$this->_createMask();
$this->_output();
// 释放
if(imagedestroy($this->h_src) && imagedestroy($this->h_dst))
{
return true;
}
else
{
false を返します。
}
}
/**
* ウォーターマークを生成するには、2 つのメソッドを呼び出してウォーターマーク テキストとウォーターマーク画像を生成します
*/
function _createMask()
{
if($this->mask_word)
{
// フォント情報を取得
$ this->_setFontInfo();
if($this->_isFull())
{
die("ウォーターマークのテキストが大きすぎます");
else
{
$this->h_dst = imagecreatetruecolor($this->dst_w, $this->dst_h);
$white = ImageColorAllocate($this->h_dst,255,255,255); imagefilledrectangle ($this->h_dst,0,0,$this->dst_w,$this->dst_h,$white);// 背景色を塗りつぶす
$this->_drawBorder(); > imagecopyresampled( $this->h_dst, $this->h_src,
$this->start_x, $this->start_y,
$this->src_x, $this->src_y ,
$this->fill_w, $this->fill_h,
$this->copy_w, $this->copy_h);
$this->gt;_createMaskWord($this-> ; h_dst);
}
}
if($this->mask_img)
{
$this->_loadMaskImg();// ロード時に幅と高さを取得します
if($this->_isFull())
{
// 元の画像にウォーターマークを生成してコピーします
$this->gt;_createMaskImg($this->h_src );
$ this->h_dst = imagecreatetruecolor($this->dst_w, $this->dst_h);
$white = ImageColorAllocate($this->h_dst,255,255,255); imagefilledrectangle($this->gt;h_dst,0,0,$this->dst_w,$this->dst_h,$white);// 背景色を塗りつぶす
$this->_drawBorder(); >imagecopyresampled( $this->h_dst, $this->h_src,
$this->start_x, $this->start_y,
$this->src_x, $this->src_y ,
$this ->fill_w, $this->start_y,
$this->copy_w, $this->copy_h);
}
else
{
// 新しい画像を作成し、コピーします
$this->h_dst = imagecreatetruecolor($this->dst_w, $this->dst_h);
$white = ImageColorAllocate($this->h_dst) ,255,255,255);
imagefilledrectangle($this->h_dst,0,0,$this->dst_w,$this->dst_h,$white);//背景色を塗りつぶす
$this-> ;_drawBorder();
imagecopyresampled( $this->h_dst, $this->h_src,
$this->start_x, $this->start_y,
$this->src_x 、 $this->src_y 、
$this->fill_w、 $this->fill_h、
$this->copy_w、 $this->copy_h); ;_createMaskImg($this->gt ;h_dst);
}
}
if(emptyempty($this->mask_word) && emptyempty($this->mask_img))
{
$this->h_dst = imagecreatetruecolor($this->dst_w, $this->dst_h);
$white = ImageColorAllocate($this->h_dst,255,255,255); ->h_dst,0, 0,$this->dst_w,$this->dst_h,$white);//背景色を塗りつぶします
$this->drawBorder();
imagecopyresampled( $ this->h_dst、$this->h_src、
$this->start_x、$this->start_y、
$this->src_x、$this->src_y、
$this->fill_w, $this->fill_h,
$this->copy_w, $this->copy_h);
}
}
/**
* 境界線を描画します
* /
function _drawBorder( )
{
if(!emptyempty($this->gt;img_border_size))
{
$c = $this->gt;_parseColor($this->gt; img_border_color);
$ color = ImageColorAllocate($this->h_src,$c[0], $c[1], $c[2]);
imagefilledrectangle($this->h_dst,0); ,0,$this->gt ;dst_w,$this->dst_h,$color);// 背景色を塗りつぶします
}
}
/**
* 透かしテキストを生成
*/
function _createMaskWord ($src)
{
$this->_countMaskPos();
$this->_checkMaskValid();マスク_フォント_カラー);
$ color = imagecolorallocatealpha($src, $c[0], $c[1], $c[2], $this->mask_txt_pct); >font))
{
imagestring($src,
$this->font,
$this->mask_pos_x, $this->mask_pos_y,
$this- >mask_word,
$color);
}
else
{
imagettftext($src,
$this->font_size, 0,
$this-> ;mask_pos_x, $this->gt ;mask_pos_y,
$color,
$this->font,
$this->mask_word);
}
}
/* *
* 透かし画像を生成
*/
function _createMaskImg($src)
{
$this->_countMaskPos();
$this->_checkMaskValid(); 、
$this->h_mask、
$this->mask_pos_x、$this->mask_pos_y、
0、0、
$this->mask_w、$this->マスク_h,
$this ->mask_img_pct);
imagedestroy($this->h_mask)
}
/**
* 透かし画像をロード
*/
function _loadMaskImg()
{
$this->_getImgType($this->mask_img);
$this->_checkValid($mask_type);
// file_get_contents 関数には PHP バージョン >4.3 が必要です.0
$src = '';
if(function_exists("file_get_contents"))
{
$src = file_get_contents($this->mask_img);
else
{
$handle = fopen ($this->mask_img, "r");
while (!feof ($handle))
{
$src .= fgets($fd, 4096);
}
fclose ($handle);
}
if(emptyempty($this->mask_img))
{
die("水印图片は空");
}
$this->h_mask = ImageCreateFromString($src);
$this->mask_w = $this->getImgWidth($this->h_mask);
$this->mask_h = $this->getImgHeight($this->h_mask);
}
/**
* 画像出力
*/
function _output()
{
$img_type = $this->img_type;
$func_name = $this->all_type[$img_type]['output'];
if(function_exists($func_name))
{
// 判断浏览器,若是IE不発行头
if(isset($_SERVER['HTTP_USER_AGENT']))
{
$ua = strtoupper($_SERVER['HTTP_USER_AGENT']);
if(!preg_match('/^.*MSIE.*)$/i',$ua))
{
header("Content-type:$img_type");
}
}
$func_name($this->h_dst, $this->dst_img, $this->img_display_quality);
}
else
{
false を返します。
}
}
/**
* 色の分析
*
* @param string $color 16 進数の色
*/
function _parseColor($color)
{
$arr = array();
for($ii=1; $ii{
$arr[] = hexdec(substr($color,$ii,2));
$ii ;
}
$arr を返します。
}
/**
* 位置座標を計算します
*/
function _countMaskPos()
{
if($this->_isFull())
{
switch($ this->mask_position)
{
ケース 1:
// 左上
$this->mask_pos_x = $this->mask_offset_x $this->img_border_size;
$this->mask_pos_y = $this->mask_offset_y $this->img_border_size;
休憩;
ケース 2:
// 左下
$this->mask_pos_x = $this->gt;mask_offset_x $this->img_border_size;
$this->mask_pos_y = $this->src_h - $this->mask_h - $this->mask_offset_y;
休憩;
ケース 3:
// 右
$this->mask_pos_x = $this->gt;src_w - $this->mask_w - $this->mask_offset_x;
$this->mask_pos_y = $this->mask_offset_y $this->img_border_size;
休憩;
ケース 4:
// 右下
$this->mask_pos_x = $this->gt;src_w - $this->mask_w - $this->mask_offset_x;
$this->mask_pos_y = $this->src_h - $this->mask_h - $this->mask_offset_y;
休憩;
デフォルト:
// 默认右下に水印を放ち、偏移指定画像素
$this->mask_pos_x = $this->gt;src_w - $this->mask_w - $this->gt ;マスクオフセット_x;
$this->mask_pos_y = $this->src_h - $this->mask_h - $this->mask_offset_y;
休憩;
}
}
else
{
switch($this->mask_position)
{
ケース 1:
// 左上
$this- >mask_pos_x = $this->mask_offset_x $this->img_border_size;
$this->mask_pos_y = $this->mask_offset_y $this->img_border_size;
休憩;
ケース 2:
// 左下
$this->mask_pos_x = $this->gt;mask_offset_x $this->img_border_size;
$this->mask_pos_y = $this->dst_h - $this->mask_h - $this->mask_offset_y - $this->img_border_size;
休憩;
ケース 3:
// 右
$this->mask_pos_x = $this->dst_w - $this->mask_w - $this->mask_offset_x - $this->img_border_size;
$this->mask_pos_y = $this->mask_offset_y $this->img_border_size;
休憩;
ケース 4:
// 右下
$this->mask_pos_x = $this->dst_w - $this->gt;mask_w - $this->mask_offset_x - $this->img_border_size ;
$this->mask_pos_y = $this->dst_h - $this->mask_h - $this->mask_offset_y - $this->img_border_size;
休憩;
デフォルト:
// 默认右下に水印を放ち、偏移指定画像素
$this->mask_pos_x = $this->gt;dst_w - $this->mask_w - $this->gt ;mask_offset_x - $this->img_border_size;
$this->mask_pos_y = $this->dst_h - $this->mask_h - $this->mask_offset_y - $this->img_border_size;
休憩;
}
}
}
/**
* フォント情報を設定します
*/
function _setFontInfo()
{
if(is_numeric($this->font))
{
$this->font_w = imagefontwidth($this->font);
$this->font_h = imagefontheight($this->font);
// 计算水ボイス体所占宽高
$word_length = strlen($this->mask_word);
$this->mask_w = $this->font_w*$word_length;
$this->mask_h = $this->font_h;
}
else
{
$arr = imagettfbbox ($this->font_size,0, $this->font,$this->mask_word);
$this->mask_w = abs($arr[0] - $arr[2]);
$this->mask_h = abs($arr[7] - $arr[1]);
}
}
/**
* 新しい画像サイズを設定します
*
* @param integer $img_w target width
* @param integer $img_h target height
*/
function _setNewImgSize($img_w, $img_h=null)
{
$num = func_num_args();
if(1 == $num)
{
$this->$this->img_scale = $img_w;// 宽度は比率として
$this->fill_w =round($this->gt; src_w * $this->img_scale / 100) - $this->img_border_size*2;
$this->fill_h =round($this->src_h * $this->img_scale / 100) - $this->img_border_size*2;
// ソース文件起始坐标
$this->src_x = 0;
$this->src_y = 0;
$this->copy_w = $this->src_w;
$this->copy_h = $this->src_h;
// 目标尺寸
$this->dst_w = $this->gt;fill_w $this->img_border_size*2;
$this->dst_h = $this->fill_h $this->img_border_size*2;
}
if(2 == $num)
{
$fill_w = (int)$img_w - $this->img_border_size*2;
$fill_h = (int)$img_h - $this->img_border_size*2;
if($fill_w < 0 || $fill_h < 0)
{
die("图片边框过大,已超过了图片的宽度");
}
$rate_w = $this->src_w/$fill_w;
$rate_h = $this->src_h/$fill_h;
switch($this->cut_type)
{
case 0:
// 如果原图大缩略图,生生缩小,否不缩小
if($rate_w < 1 && $rate_h < 1)
{
$this->fill_w = (int)$this->src_w;
$this->fill_h = (int)$this->src_h;
}
else
{
if($rate_w >= $rate_h)
{
$this->fill_w = (int)$fill_w;
$this->fill_h =round($this->src_h/$rate_w);
}
else
{
$this->$this->fill_w =round($this->src_w/$rate_h);
$this->fill_h = (int)$fill_h;
}
}
$this->src_x = 0;
$this->src_y = 0;
$this->copy_w = $this->src_w;
$this->copy_h = $this->src_h;
// 目标尺寸
$this->dst_w = $this->gt;fill_w $this->img_border_size*2;
$this->dst_h = $this->fill_h $this->img_border_size*2;
休憩;
// 自動裁切
ケース 1:
// 如果图片が缩小剪切才进実行操作
if($rate_w >= 1 && $rate_h >=1)
{
if($this->src_w > $this->src_h)
{
$src_x =round($this->src_w-$this->src_h)/2;
$this->setSrcCutPosition($src_x, 0);
$this->setRectangleCut($fill_h, $fill_h);
$this->copy_w = $this->src_h;
$this->copy_h = $this->src_h;
}
elseif($this->src_w < $this->src_h)
{
$src_y =round($this->src_h-$this->src_w) /2;
$this->setSrcCutPosition(0, $src_y);
$this->setRectangleCut($fill_w, $fill_h);
$this->copy_w = $this->src_w;
$this->copy_h = $this->src_w;
}
else
{
$this->setSrcCutPosition(0, 0);
$this->copy_w = $this->src_w;
$this->copy_h = $this->src_w;
$this->setRectangleCut($fill_w, $fill_h);
}
}
else
{
$this->setSrcCutPosition(0, 0);
$this->setRectangleCut($this->src_w, $this->src_h);
$this->copy_w = $this->src_w;
$this->copy_h = $this->src_h;
}
// 目标尺寸
$this->dst_w = $this->gt;fill_w $this->img_border_size*2;
$this->dst_h = $this->fill_h $this->img_border_size*2;
休憩;
// 手工裁切
ケース 2:
$this->copy_w = $this->fill_w;
$this->copy_h = $this->fill_h;
// 目标尺寸
$this->dst_w = $this->gt;fill_w $this->img_border_size*2;
$this->dst_h = $this->fill_h $this->img_border_size*2;
休憩;
デフォルト:
ブレーク;
}
}
// 目标文件起始坐标
$this->start_x = $this->img_border_size;
$this->start_y = $this->img_border_size;
}
/**
* ウォーターマーク画像が生成された画像の幅と高さより大きいかどうかを確認します
*/
function _isFull()
{
Return ( $this->mask_w $this->mask_offset_x > $this-> fill_w
|| $this->mask_h $this->mask_offset_y > $this->fill_h)
?true:false;
}
/**
* ウォーターマーク画像が元の画像を超えているかどうかを確認します
*/
function _checkMaskValid()
{
if( $this->mask_w $this->mask_offset_x > $this-> src_w
|| $this->mask_h $this->mask_offset_y > $this->src_h)
{
die("水印图片尺寸大在原图,请缩小水印图") ;
}
}
/**
* 画像タイプを取得します
*
* @param string $file_path ファイルパス
*/
function _getImgType($file_path)
{
$type_list = array("1"=>"gif","2"=>"jpg ","3"=>"png","4"=>"swf","5" =>"psd","6"=>"bmp","15"=>"wbmp ");
if(file_exists($file_path))
{
$img_info = @getimagesize ($file_path);
if(isset($type_list[$img_info[2]]))
{
Return $type_list[$img_info[2]];
}
}
else
{
die("文件が存在しません、文件类型を取得できません!");
}
}
/**
* 画像タイプが正当であるかどうかを確認し、array_key_exists 関数を呼び出します。この関数には
* PHP バージョンが 4.1.0 以降であることが必要です。
*
* @param string $img_type ファイル タイプ
*/
function _checkValid($img_type)
{
if(!array_key_exists($img_type, $this->all_type) )
{
false を返します。
}
}
/**
* 指定されたパスに従ってディレクトリを生成します
*
* @param string $path path
*/
function _mkdirs($path)
{
$adir =explode('/',$path);
$dirlist = '';
$rootdir = array_shift($adir);
if(($rootdir!='.'||$rootdir!='..')&&!file_exists($rootdir))
{
@mkdir($rootdir);
}
foreach($adir as $key=>$val)
{
if($val!='.'&&$val!='..')
{
$dirlist .= "/".$val;
$dirpath = $rootdir.$dirlist;
if(!file_exists($dirpath))
{
@mkdir($dirpath);
@chmod($dirpath,0777);
}
}
}
}
/**
* 垂直反転
*
* @param string $src 画像ソース
*/
function _flipV($src)
{
$src_x = $this-> ;getImgWidth($src);
$src_y = $this->getImgHeight($src);
$new_im = imagecreatetruecolor($src_x, $src_y);
for ($y = 0; $y {
imagecopy($new_im, $src, 0, $src_y - $y - 1, 0, $y, $src_x, 1);
}
$this->h_src = $new_im;
}
/**
* 水平方向に反転
*
* @param string $src 画像ソース
*/
function _flipH($src)
{
$src_x = $this->getImgWidth($src);
$src_y = $this->getImgHeight($src);
$new_im = imagecreatetruecolor($src_x, $src_y);
for ($x = 0; $x {
imagecopy($new_im, $src, $src_x - $x - 1, 0, $x, 0, 1、$src_y);
}
$this->h_src = $new_im;
}
}
使用例:
< ?php
require_once('lib/thumb.class.php');
$t = new ThumbHandler(); "img/test.jpg");
$t->setDstImg("tmp/new_test.jpg");
$t->setMaskImg("img/test.gif"); $t->setMaskPosition(1);
$t->setMaskImgPct(80);
$t->setDstImgBorder(4,"#dddddd"); // ズーム率を指定します🎜>$t->createImg(300,200);
?>
require_once('lib/thumb.class.php'); );
// 基本的な使い方
$t->setSrcImg("img/test.jpg");
$t->setMaskWord("test"); ;setDstImgBorder(10,"#dddddd");
//スケーリング率を指定します
$t->createImg(50);
( 'lib/thumb.class.php');
$t = new ThumbHandler();
//基本的な使い方
$t->setSrcImg("img/test.jpg"); 🎜 >$t->setMaskWord("test");
//固定幅と高さを指定
$t->createImg(200,200);
require_once('lib/thumb.class.php');
$t = new ThumbHandler();
$t->setSrcImg("img/test.jpg"); t- >setDstImg("tmp/new_test.jpg");
$t->setMaskWord("test");
// 固定の幅と高さを指定します
$t->createImg( 200,200);
$t = new ThumbHandler(); ;setSrcImg( "img/test.jpg");
//フォントファイルのアドレスを指定
$t->setMaskFont("c:/winnt/fonts/arial.ttf"); t-> setMaskFontSize(20);
$t->setMaskFontColor("#ffff00");
$t->setDstImgBorder( 99,"# dddddd");
$t->createImg(50)
require_once('lib/thumb.class.php');
$ t = new ThumbHandler();
$t->setSrcImg("img/test.jpg");
$t->setMaskOffsetX(55); ;setMaskOffsetY(55 );
$t->setMaskPosition(1);
//$t->setMaskPosition(3); 🎜>// $t->setMaskPosition(4);
$t->setMaskFontColor("#ffff00");
$t->setMaskWord("test");固定の幅と高さを指定します
$t->createImg(50)
?>
require_once('lib/thumb.class.php'); $t = new ThumbHandler ();
$t->setSrcImg("img/test.jpg");
$t->setMaskFont("c:/winnt/fonts/simyou.ttf") ;
$ t->setMaskFontSize(20);
$t->setMaskFontColor("#ffffff");
$t->setMaskTxtPct(20); ;setDstImgBorder(10, "#dddddd");
$text = "中国語";
$str = mb_convert_encoding($text, "UTF-8", "gb2312"); ;setMaskWord($str );
$t->setMaskWord("test");
//固定の幅と高さを指定します
$t->createImg(50)>; ;


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