中国語と画像の透かしコードを PHP に追加する image_PHP チュートリアル

WBOY
リリース: 2016-07-13 10:45:45
オリジナル
1140 人が閲覧しました

$ico_pic は、画像にウォーターマークを追加するウォーターマーク画像です。この種のコードを見つけた場合は、それをダウンロードして PHP ファイルとして保存し、後述する呼び出しメソッドを使用できます。この生成された透かし画像のクラス コードを呼び出します。

$ico_pic は、画像にウォーターマークを追加するウォーターマーク画像です。この種のコードを探している場合は、PHP チュートリアル ファイルとしてダウンロードして保存し、呼び出しを使用できます。後述するメソッドを使用して、この生成された画像コードを呼び出します。
*/

クラスsmallpic{

プライベート $src_pic;//元の写真
private $ico_pic = "003.png";//透かし画像
Private $ico_text = "ウォーターマーク";//ウォーターマークテキスト
Private $small_width;//サムネイルの幅
private $small_height;//サムネイルの高さ
private $is_ico_pic = true;//画像にウォーターマークを追加するかどうか
private $is_text = true;//テキスト透かしを追加するかどうか
Private $src_x = 20;//ウォーターマークは元の画像の x 座標にあります
Private $src_y = 20;//ウォーターマークは元の画像の y 座標にあります
Private $ut = "utf-8";//テキストエンコーディング
Private $font_color = "#990000";//テキストの透かしの色
Private $samll_pic_name = "smallpic";//小さな画像の名前
Private $big_pic_name = "bigpic";//全体像の名前


関数 __construct($src_pic,$small_width,$small_height){
$this->checkfile($src_pic);
$this->checkfile($this->ico_pic);
$this->src_pic = $src_pic;
$this->small_width = $small_width;
$this->small_height = $small_height;
}

プライベート関数 __get($property_name){
$this->$property_name;を返します
}

プライベート関数 __set($property_name,$value){
$this->$property_name = $value;を返します
}


/**
* 画像に関する基本情報を取得します。タイプは配列です
​*/
関数 getimageinfo($image){
@getimagesize($image) を返します;
}

/**
* phpに画像をロード
* $image が画像に渡されました
​*/
関数 getimage($image){
$image_info = $this->getimageinfo($image);
スイッチ($image_info[2]){
ケース1:
$img = @imagecreatefromgif($image);
休憩
ケース 2:
$img = @imagecreatefromjpeg($image);
休憩
ケース 3:
$img = @imagecreatefrompng($image);
休憩
}
$img を返します;
}

関数 createimageforsuffix($big_pic,$new_pic){
$image_info = $this->getimageinfo($this->src_pic);
スイッチ($image_info[2]){
ケース1:
//大きな画像を出力
@imagegif($big_pic,$this->big_pic_name.".gif");
//サムネイルを出力します
@imagegif($new_pic,$this->samll_pic_name.".gif");
休憩
ケース 2:
//大きな画像を出力
@imagejpeg($big_pic,$this->big_pic_name.".jpg");
//サムネイルを出力します
@imagejpeg($new_pic,$this->samll_pic_name.".jpg");
休憩
ケース 3:
//大きな画像を出力
@imagepng($big_pic,$this->big_pic_name.".png");
//サムネイルを出力します
@imagepng($new_pic,$this->samll_pic_name.".png");
休憩
}
}

関数チェックファイル($file){
if(!file_exists($file)){
Die("写真:".$file."存在しません!");
}
}

関数createsmallimage(){
$big_pic = $this->getimage($this->src_pic);
$big_pic_info = $this->getimageinfo($this->src_pic);
$new_pic = $this->getimage($this->ico_pic);
$new_pic_info = $this->getimageinfo($this->ico_pic);
$rgb = $this->convcolor();

//幅の比率または高さの比率に従って拡大縮小するかを決定します
if($big_pic_info[0] > $big_pic_info[1]){
$ratio = $this->small_width/(int)$big_pic_info[0];
$small_pic_width = $this->small_width;
$small_pic_height = (int)($big_pic_info[1]*$ratio);
}その他{
$ratio = $this->small_height/(int)$big_pic_info[1];
$small_pic_height = $this->small_height;
$small_pic_width = (int)($big_pic_info[0]*$ratio);
}

//エコー $small_pic_width = (int)($big_pic_info[0]*$ratio);
//エコー $small_pic_height = (int)($big_pic_info[1]*$ratio);

//画像に透かしを入れるかどうか
if ($this->is_ico_pic){
//画像の透かしを入れます
@imagecopy($big_pic,$new_pic,$this->src_x,$this->src_y,0,0,$new_pic_info[0],$new_pic_info[1]);
}
//テキストの透かしを印刷するかどうか
if ($this->is_text){
//テキストの色を設定します
$text_color = @imagecolorallocate($big_pic,$rgb[0],$rgb[1],$rgb[2]);
//テキストエンコーディングを変換します
$text = @iconv($this->ut,"utf-8",$this->ico_text);
//テキストの透かしを入れます
@imagettftext($big_pic,12,0,$this->src_x,$this->src_y,$text_color,"simkai_0.ttf",$text);
}
//新しい画像用に新しい描画ボードを作成します
$new_pic = @imagecreatetruecolor($small_pic_width,$small_pic_height);
//サムネイルを生成します
@imagecopyresize($new_pic,$big_pic,0,0,0,0,$small_pic_width,$small_pic_height,$big_pic_info[0],$big_pic_info[1]);
//画像を出力します
$this->createimageforsuffix($big_pic,$new_pic);
}

/**
※クラス内の関数関数は#000000を255,255,255に変換します
​*/
プライベート関数 convcolor(){
$rgb = 配列();
$color = preg_replace("/#/","",$this->font_color);
$c = hexdec($color);
$r = ($c >> 16) & 0xff;
$g = ($c >> 8) & 0xff;
$b = $c & 0xff;
$rgb[0] = $r;
$rgb[1] = $g;
$rgb[2] = $b;
$rgb;
を返します }
}

//メソッドの呼び出し

$pic = 新しい smallpic("002.jpg",600,300);
$pic->is_text = true;
$pic->is_ico_pic = true;
$pic->ico_pic = "./images/004.png";
$pic->ico_text = "明けましておめでとうございます!";
//$pic->src_x = 80;
$pic->src_y = 80;
$pic->ut = "utf-8";
$pic->font_color = "#0521f8";
$pic->samll_pic_name = "hslsamll";
$pic->big_pic_name = "hslbig";
$pic->createsmallimage();

?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/633001.html技術記事 $ico_pic は、画像にウォーターマークを追加するウォーターマーク画像です。この種のコードを見つけた場合は、それをダウンロードして php ファイルとして保存し、後述の呼び出し元を使用します。 ..
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート