-
/** - * 透かしクラスを追加し、テキストと画像の透かしの透明設定、透かし画像の透明な背景をサポートします。
- * 使用法: (php テキストウォーターマーク効果)
- * $obj = new WaterMask($imgFileName); // オブジェクトをインスタンス化します
- * $obj->$waterType = 1; // タイプ: 0 はテキストウォーターマーク、1 はテキストウォーターマークです。画像の透かし
- * $obj->$transparent = 45; //透かしの透明度
- * $obj->$waterStr = 'bbs.it-home.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; //ウォーターマークの透明度
- $waterStr = 'bbs.it-home.org' //ウォーターマークのテキスト
- //テキストのフォントSize
- public $fontColor = array(255,0,255); //ウォーターマークの文字色 (RGB)
- public $fontFile = 'AHGBold.ttf'; //フォント ファイル
- public $waterImg = 'logo.png';画像
- private $srcImg = ''; //透かしを入れる必要がある画像
- private $im = ''; //画像ハンドル
- private $water_im = '' //透かし画像ハンドル
- $srcImg_info = ''; / /画像情報
- private $waterImg_info = '' //ウォーターマーク画像情報
- private $str_w = ''; //ウォーターマーク文字幅
- private $x = ''; ; //ウォーターマーク $img) ? $img : die('"'.$img.'" ソースファイルが存在しません!')
- }
- private function imginfo() { //画像の情報を取得します透かしを入れて画像をロードする必要があります。
- $this->srcImg_info = getimagesize($this->srcImg);
- switch ($this->srcImg_info[2]) {
- ケース 3:
- $this->im = imagecreatefrompng($this-> ;srcImg);
- ブレイク 1;
- $this->im = imagecreatefromjpeg($this->srcImg);
- ブレイク 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;
- $this->water_im = imagecreatefromjpeg($this->waterImg);
- ブレイク 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;
- ケース 3: //上右
- $this->x = $this->srcImg_info[0]-$this->waterImg_info[0];
- $this->y = 0;
- 休憩1;
- ケース 4: //中左
- $this->x = 0;
- $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
- 休憩1;
- ケース 5: //中中
- $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
- $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
- 休憩1;
- ケース 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] <= $this->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->透明;
- 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();
- }
- 関数出力() {
- $this->imginfo();
- if ($this->waterType == 0) {
- $this->waterstr();
- }else {
- $this->waterimginfo();
- $this->waterimg();
- }
- switch ($this->srcImg_info[2]) {
- ケース 3:
- imagepng($this->im,$this->srcImg);
- 休憩1;
- ケース 2:
- imagejpeg($this->im,$this->srcImg);
- 休憩1;
- ケース 1:
- imagegif($this->im,$this->srcImg);
- 休憩1;
- デフォルト:
- die('添加水印失败!');
- 休憩;
- }
- imagedestroy($this->im);
- imagedestroy($this->water_im);
- }
- }
- ?>
复制代
|