/****
ヤン・シバ公共福祉PHP講座
フォーラム: http://www.zixue.it
Weibo: http://weibo.com/Yshiba
YYチャンネル: 88354001
****/
/***
写真を加工したい
まず画像のサイズとタイプの情報を取得する必要があります
ウォーターマーク: 指定したウォーターマークをターゲットにコピーし、透明効果を追加します
サムネイル: 大きな画像を小さなサイズの画面にコピーします
***/
クラス ImageTool {
// imageInfo は画像情報を分析します
// array() を返す
パブリック静的関数 imageInfo($image) {
// 画像が存在するかどうかを判断します
if (!file_exists($image)) {
false を返します。
}
$info = getimagesize($image);
if ($info == false) {
false を返します。
}
' s ' s を通じて
d--
$img['width'] = $info[0];
$img['高さ'] = $info[1];
$img['ext'] = substr($info['mime'], strpos($info['mime'], '/') + 1);
$img;
}
/*
ウォーターマーク機能
Parm String $dst とその他の操作画像
parm String $water 透かし画像
parm String $save、入力されない場合、デフォルトで元の画像が置き換えられます
*/
パブリック静的関数 Water($dst, $water, $save = NULL, $pos = 2, $alpha = 50) {
// 最初に 2 つの写真が存在することを確認してください
if (!file_exists($dst) || !file_exists($water)) {
false を返します。
}
// まず、ウォーターマークが操作対象の画像より大きくならないようにしてください
$dinfo = self::imageInfo($dst);
$winfo = self::imageInfo($water);
if ($winfo['height'] > $dinfo['height'] || $winfo['width'] > $dinfo['width']) {
false を返します。
}
// 2 つの写真をキャンバス上で読み取ります。ただし、写真は png または jpeg である可能性があります。読み取るにはどの関数を使用する必要がありますか?
$dfunc = 'imagecreatefrom'
$wfunc = 'imagecreatefrom' . $winfo['ext'];
if (!function_exists($dfunc) || !function_exists($wfunc)) {
false を返します。
} www.2cto.com
// 関数を動的にロードしてキャンバスを作成します
$dim = $dfunc($dst);
アウトアウトアウトアウト
$wim = $wfunc($water);
//透かしキャンバスを作成する
// ウォーターマークの位置に基づいて貼り付けられた座標を計算します
switch($pos) {
ケース0:
// 左上隅
$posx = 0;
$posy = 0;
休憩。
ケース 1 :
// 右上角
$posx = $dinfo['width'] - $winfo['width'];
$posy = 0;
休憩。
ケース 3 :
// 左下角
$posx = 0;
$posy = $dinfo['height'] - $winfo['height'];
休憩。
デフォルト:
$posx = $dinfo['width'] - $winfo['width'];
$posy = $dinfo['height'] - $winfo['height'];
}
// 加水印
imagecopymerge($dim, $wim, $posx, $posy, 0, 0, $winfo['width'], $winfo['height'], $alpha);
// 保存
if (!$save) {
$save = $dst;
unlink($dst);
// 删除原图
}
$createfunc = '画像' 。 $dinfo['ext'];
$createfunc($dim, $save);
imagedestroy($dim);
imagedestroy($wim);
true を返します。
}
/**
親指 サムネイルを生成
比例的に拡大縮小し、両側を空白のままにしておきます
**/
public static function thread($dst, $save = NULL, $width = 200, $height = 200) {
// 第一判断処理待ちの画像は存在しません
$dinfo = self::imageInfo($dst);
if ($dinfo == false) {
false を返します。
}
// 计算缩放率
$calc = min($width / $dinfo['width'], $height / $dinfo['height']);
// 创建原始图的画布
$dfunc = 'imagecreatefrom' 。 $dinfo['ext'];
$dim = $dfunc($dst);
// 创建缩略画布
$tim = imagecreatetruecolor($width, $height);
// 创建白色充缩略画布
$white = imagecolorallocate($tim, 255, 255, 255);
// 充缩略画布
imagefill($tim, 0, 0, $white);
// 复制并缩略
$dwidth = (int)$dinfo['width'] * $calc;
$dheight = (int)$dinfo['height'] * $calc;
$paddingx = (int)($width - $dwidth) / 2;
$paddingy = (int)($height - $dheight) / 2;
imagecopyresampled($tim, $dim, $paddingx, $paddingy, 0, 0, $dwidth, $dheight, $dinfo['width'], $dinfo['height']);
// 保存画像
if (!$save) {
$save = $dst;
unlink($dst);
}
$createfunc = '画像' 。 $dinfo['ext'];
$createfunc($tim, $save);
imagedestroy($dim);
imagedestroy($tim);
true を返します。
}
}
// print_r(ImageTool::imageInfo('./home.jpg'));
/* www.2cto.com
echo ImageTool::water('./home.jpg','./smallfeng.png','home1.jpg',0)?'OK':'FAIL';
echo ImageTool::water('./home.jpg','./smallfeng.png','home2.jpg',1)?'OK':'FAIL';
echo ImageTool::water('./home.jpg','./smallfeng.png','home3.jpg',2)?'OK':'FAIL';
echo ImageTool::water('./home.jpg','./smallfeng.png','home4.jpg',3)?'OK':'FAIL';
*/
http://www.bkjia.com/PHPjc/477858.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477858.html技術記事これは完璧な GD 操作 [php] ?php /**** やんしば福祉 PHP 講座フォーラム: http://www.zixue.it Weibo: http://weibo.com/Yshiba YY チャンネル: 88354001 ****/ /*** 想操作图片...