テキスト透かしと画像透かしをサポートします。透かしのランダムまたは固定位置の設定をサポートします(画像とテキストの透かしの両方がサポートされます)。画像の背景のフォント、色、サイズを設定します。ウォーターマークは透明です
- /**
- * 透かしクラスを追加し、テキストと画像の透かしの透明設定、透かし画像の透明な背景をサポートします。
- * 日付: 2011-09-27
- * 著者: www.itwhy.org
- * 使用法:
- * $obj = new WaterMask($imgFileName) //オブジェクトをインスタンス化します
- * $obj->$waterType = 1 ; //タイプ: 0 はテキストの透かし、1 は画像の透かしです
- * $obj->$transparent = 45; //透かしの透明度
- * $obj->$waterStr = 'www.itwhy.org';ウォーターマークのテキスト
- * $obj->$fontSize = 16; //テキストのフォントサイズ
- * $obj->$fontColor = array(255,0255); //ウォーターマークのテキストの色(RGB)
- * $obj-> ;$fontFile = = 'AHGBold.ttf'; //フォント ファイル
- * $obj->output(); //出力ウォーターマーク画像ファイルは入力画像ファイルを上書きします
- */
- class WaterMask{
- public $waterType = 1; //ウォーターマークのタイプ: 0 はテキストのウォーターマーク、1 は画像のウォーターマークです
- public $pos = 0; //ウォーターマークの位置
- public $transparent = 45; //ウォーターマークの透明度
- public $waterStr = 'www.itwhy.org'; //ウォーターマークのテキスト
- public $fontSize = 16; $fontColor = array(255,0,255); // ウォーターマークのテキストの色 (RGB)
- public $fontFile = 'AHGBold.ttf'; // フォント ファイル
-
- // ウォーターマークの画像
-
- private $srcImg = ''; //透かし入りの画像を追加する必要があります
- private $im = '' //画像のハンドル
- private $water_im = '';画像情報
- private $waterImg_info = ''; // ウォーターマーク画像情報
- private $str_w = '' //ウォーターマーク文字幅
- private $x = ''; /ウォーターマーク X 座標
- private $y = ''; //ウォーターマーク y 座標
-
- function __construct($img) { //デストラクター
- $this->srcImg = file_exists($img) ? '.$img.'" ソース ファイルが存在しません。 ');
- }
- private function imginfo() { //透かしを入れる必要がある画像に関する情報を取得し、画像をロードします。
- $this->srcImg_info = getimagesize($this->srcImg);
- switch ($this->srcImg_info[2]) {
- case 3:
- $this->im = imagecreatefrompng($this-> ;srcImg);
- ブレーク 1;
- ケース 2:
- $this->im = imagecreatefromjpeg($this->srcImg);
- ブレーク 1;
- ケース 1:
- $this->im = imagecreatefromgif($this ->srcImg);
- break 1;
- default:
- die('元の画像 ('.$this->srcImg.') の形式が間違っています。PNG、JPEG、GIF のみをサポートします。');
- }
- }
- private function Waterimginfo() { //ウォーターマーク画像の情報を取得し、画像を読み込みます。
- $this->waterImg_info = getimagesize($this->waterImg);
- switch ($this->waterImg_info[2]) {
- ケース 3:
- $this->water_im = imagecreatefrompng($this-> ;waterImg);
- ブレーク 1;
- ケース 2:
- $this->water_im = imagecreatefromjpeg($this->waterImg);
- ブレーク 1;
- ケース 1:
- $this->water_im = imagecreatefromgif($this ->waterImg);
- break 1;
- default:
- die('ウォーターマーク画像 ('.$this->srcImg.') の形式が間違っており、PNG、JPEG、GIF のみをサポートしています。');
- }
- }
- private function Waterpos() { //水印位置算法
- switch ($this->pos) {
- case 0: //随机位置
- $this->x = rand(0, $this->srcImg_info[0]-$this->waterImg_info[0]);
- $this->y = rand(0,$this->srcImg_info[1]-$this->waterImg_info[ 1]);
- ブレーク 1;
- ケース 1: //上左
- $this->x = 0;
- $this->y = 0;
- ブレーク 1;
- ケース 2: //上中
- $ this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
- $this->y = 0;
- ブレーク 1;
- case 3: //上右
- $this->x = $this->srcImg_info[0]-$this->waterImg_info[0];
- $this->y = 0;
- ブレーク 1;
- case 4: //中左
- $this->x = 0;
- $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
- ブレーク 1;
- case 5: //中中
- $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
- $this->y = ($this- >srcImg_info[1]-$this->waterImg_info[1])/2;
- ブレーク 1;
- case 6: //中右
- $this->x = $this->srcImg_info[0]- $this->waterImg_info[0];
- $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
- ブレーク 1;
- ケース 7: //下左
- $this->x = 0;
- $this->y = $this->srcImg_info[1]-$this->waterImg_info[1];
- ブレーク 1;
- ケース 8: //下中
- $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
- $this->y = $this->srcImg_info [1]-$this->waterImg_info[1];
- ブレーク 1;
- デフォルト: //下右
- $this->x = $this->srcImg_info[0]-$this->waterImg_info[ 0];
- $this->y = $this->srcImg_info[1]-$this->waterImg_info[1];
- ブレーク 1;
- }
- }
- プライベート関数 Waterimg() {
- if ($ this->srcImg_info[0] waterImg_info[0] || $this->srcImg_info[1] <= $this->waterImg_info[1]){
- die('水印比原图大!');
- }
- $this->waterpos();
- $cut = imagecreatetruecolor($this->waterImg_info[0],$this->waterImg_info[1]);
- imagecopy($cut,$this ->im,0,0,$this->x,$this->y,$this->waterImg_info[0],$this->waterImg_info[1]);
- $pct = $this ->transparent;
- imagecopy($cut,$this->water_im,0,0,0,0,$this->waterImg_info[0],$this->waterImg_info[1]);
- imagecopymerge( $this->im,$cut,$this->x,$this->y,0,0,$this->waterImg_info[0],$this->waterImg_info[1],$pct );
- }
- プライベート関数waterstr() {
- $rect = imagettfbbox($this->fontSize,0,$this->fontFile,$this->waterStr);
- $w = abs($rect[ 2]-$rect[6]);
- $h = abs($rect[3]-$rect[7]);
- $fontHeight = $this->fontSize;
- $this->water_im = imagecreatetruecolor( $w, $h);
- imagealphablending($this->water_im,false);
- imagesavealpha($this->water_im,true);
- $white_alpha = imagecolorallocatealpha($this->water_im,255,255,255,127);
- imagefill($this->water_im,0,0,$white_alpha);
- $color = imagecolorallocate($this->water_im,$this->fontColor[0],$this->fontColor[1], $this->fontColor[2]);
- imagettftext($this->water_im,$this->fontSize,0,0,$this->fontSize,$color,$this->fontFile,$ this->waterStr);
- $this->waterImg_info = array(0=>$w,1=>$h);
- $this->waterimg();
- }
- function Output() {
- $this->imginfo();
- if ($this->waterType == 0) {
- $this->waterstr();
- }else {
- $this->gt;waterimginfo();
- $ this->waterimg();
- }
- switch ($this->srcImg_info[2]) {
- case 3:
- imagepng($this->im,$this->srcImg);
- ブレーク 1;
- ケース 2:
- imagejpeg($this->im,$this->srcImg);
- ブレーク 1;
- ケース 1:
- imagegif($this->im,$this->srcImg);
- ブレーク1;
- デフォルト:
- die('追加水印失败!');
- Break;
- }
- imagedestroy($this->im);
- imagedestroy($this->water_im);
- }
- }
- ?> ;
复制代
|