一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - PHP教程 - PHP開發的文字水印,縮略圖,圖片水印實現類與用法示例

PHP開發的文字水印,縮略圖,圖片水印實現類與用法示例

2021-08-01 14:53moTzxx PHP教程

這篇文章主要介紹了PHP開發的文字水印,縮略圖,圖片水印實現類與用法,結合完整實例形式分析了php文字水印、縮略圖操作類定義與簡單使用方法,需要的朋友可以參考下

本文實例講述了PHP開發的文字水印,縮略圖,圖片水印實現類與用法。分享給大家供大家參考,具體如下:

1.實現類ImageToTest.class.php參考代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
class ImageToTest {
  /**
   * 圖片的基本信息
   */
  private $info;
  private $image;
  public function __construct($src){
    $info = getimagesize($src);
    $this->info = array(
      'width'=> $info[0],
      'height'=> $info[1],
      'type'=> image_type_to_extension($info[2],false),
      'mime'=>$info['mime']
    );
    $fun = "imagecreatefrom{$this->info['type']}";
    $this->image = $fun($src);
  }
  /**
   * 操作圖片 (壓縮)
   */
  public function thumb($width,$height){
    $image_thumb = imagecreatetruecolor($width,$height);
    imagecopyresampled($image_thumb,$this->image,0,0,0,0,$width,$height,
      $this->info['width'],$this->info['height']);
    imagedestroy($this->image);
    $this->image = $image_thumb;
  }
  /**
   * 操作圖片(添加文字水印)
   */
  public function fontMark($content,$font_url,$size,$color,$local,$angle){
    $col = imagecolorallocatealpha($this->image,$color[0],$color[1],$color[2],$color[3]);
    imagettftext($this->image,$size,$angle,$local['x'],$local['y'],$col,$font_url,$content);
  }
  /**
   * 操作圖片(添加水印圖片)
   */
  public function imageMark($source,$local,$alpha){
    //1.獲取水印圖片的基本信息
    $info2 = getimagesize($source);
    //2.通過水印的圖片編號來獲取水印的圖片類型
    $type2 = image_type_to_extension($info2[2],false);
    //3.在內存中創建一個和我們的水印圖像一致的圖像類型
    $func2 = "imagecreatefrom{$type2}";
    //4.把水印圖片復制到內存中
    $water = $func2($source);
    //5.合并圖片
    imagecopymerge($this->image,$water,$local['x'],$local['y'],0,0,$info2[0],$info2[1],$alpha);
    //6.銷毀水印圖片
    imagedestroy($water);
  }
  /**
   * 在瀏覽器中輸出圖片
   */
  public function show(){
    header("Content-type:".$this->info['mime']);
    $funs = "image{$this->info['type']}";
    $funs($this->image);
  }
  /**
   * 把圖片保存到硬盤里
   */
  public function save($newName){
    $funs = "image{$this->info['type']}";
    $funs($this->image,'./outPut/'.$newName.'.'.$this->info['type']);
  }
  /**
   * 銷毀圖片 使用析構函數
   */
  public function __destruct()
  {
    imagedestroy($this->image);
  }
}

2.測試參考代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require_once('ImageToTest.class.php');
/*$src = './image/wbg.jpg';
$image = new ImageToTest($src);
$image->thumb(700,550);
$image->show();*/
/*$src2 = './image/wbg.jpg';
$content = 'SGC';
$font_url = './image/YGYcuhei.ttf';
$size = 33;
$color = array(
  0=>2,
  1=>222,
  2=>222,
  3=>60
);
$local = array(
  'x'=>20,
  'y'=>100
);
$angle = 10;
$image2 = new ImageToTest($src2);
$image2->fontMark($content,$font_url,$size,$color,$local,$angle);
$image2->show();
$image2->save('hahahah');*/
$src3 = './image/wbg.jpg';
$source = './image/water.jpg';
$local = array(
  'x'=>20,
  'y'=>100
);
$font_url = './image/YGYcuhei.ttf';
$size = 38;
$color = array(
  0=>2,
  1=>222,
  2=>222,
  3=>60
);
$alpha = 60;
$angle = 50;
$image3 = new ImageToTest($src3);
$image3->imageMark($source,$local,$alpha);
$image3->thumb(700,550);
$image3->fontMark('Hello',$font_url,$size,$color,$local,$angle);
$image3->show();
$image3->save('WAWAWAWAWA');

希望本文所述對大家PHP程序設計有所幫助。

原文鏈接:https://blog.csdn.net/u011415782/article/details/51598081

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 3d动漫被吸乳羞羞 | 天选之王漫画顾长歌免费阅读 | 日韩高清在线免费观看 | 欧美日韩亚洲区久久综合 | 午夜dj免费视频观看社区 | 青草青青在线 | 亚洲天堂网在线观看视频 | 无限资源在线观看完整版免费下载 | 天天舔天天干天天操 | 鸥美毛片 | 亚洲免费视频一区 | 单亲乱l仑在线观看免费观看 | caoporn人人| 动漫白丝袜美女羞羞 | 男生操女生漫画 | 四虎成人免费大片在线 | 欧美帅老头oldmangay | 亚洲AV午夜精品麻豆AV | 国产精品合集久久久久青苹果 | 成年性生交大片免费看 | 午夜福到在线2019 | 91在线精品视频 | 亚洲精品国产在线网站 | 99久久国产视频 | 99在线免费播放 | 欧美ggg666| 国产精品久久久久久久久久久搜索 | 久久xxxx | 天天成人 | 国产三级精品三级男人的天堂 | 欧美同志gaypronvideos | 欧美日韩1区2区 | 日本在线观看www鲁啊鲁视频 | 国产成人久久久精品一区二区三区 | 日本一区二区三区视频在线观看 | 校园高h | 俄罗斯性高清完整版 | 亚洲人成网站在线观看青青 | 国产成人精品男人的天堂538 | 四虎论坛 | 日本精品中文字幕在线播放 |