激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

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

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

服務器之家 - 編程語言 - PHP教程 - php圖像處理類實例

php圖像處理類實例

2020-11-10 16:50都市代碼工 PHP教程

這篇文章主要介紹了php圖像處理類,涉及php操作圖片的大小修改、加水印、生成驗證碼、輸出及保存圖像的相關技巧,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<?php
/**
 * Image 類
 */
class Image {
 /**
 * @var string $fileName 文件名
 * @access private
 */
 private $fileName = '';
 /**
 * @var gd resource $imageResource 原圖像
 * @access private
 */
 private $imageResource = NULL;
 /**
 * @var int $imageWidth 原圖像寬
 * @access private
 */
 private $imageWidth = NULL;
 /**
 * @var int $imageHeight 原圖像高
 * @access private
 */
 private $imageHeight = NULL;
 /**
 * @var int $imageType 原圖像類型
 * @access private
 */
 private $imageType = NULL;
 /**
 * @var int $imageWidth 原圖像寬
 * @access private
 */
 public $width = NULL;
 /**
 * @var int $imageHeight 原圖像高
 * @access private
 */
 public $height = NULL;
 /**
 * @var int $imageType 原圖像類型
 * @access private
 */
 public $type = NULL;
 /**
 * @var int $newResource 新圖像
 * @access private
 */
 private $newResource = NULL;
 /**
 * @var int $newResType 新圖像類型
 * @access private
 */
 private $newResType = NULL;
 /**
 * 構(gòu)造函數(shù)
 * @param string $fileName 文件名
   */
 public function __construct($fileName = NULL) {
 $this->fileName = $fileName;
 if ($this->fileName) {
 $this->getSrcImageInfo();
 }
 }
 /**
 * 取源圖像信息
 * @access private
 * @return void
 */
 private function getSrcImageInfo() {
 $info = $this->getImageInfo();
 $this->imageWidth = $info[0];
 $this->imageHeight = $info[1];
 $this->imageType = $info[2];
 $this->width = $info[0];
 $this->height = $info[1];
 $this->type = $info[2];
 }
 /**
 * 取圖像信息
 * @param string $fileName 文件名
 * @access private
 * @return array
 */
 private function getImageInfo($fileName = NULL) {
 if ($fileName==NULL) {
 $fileName = $this->fileName;
 }
 $info = getimagesize($fileName);
 return $info;
 }
 /**
 * 創(chuàng)建源圖像GD 資源
 * @access private
 * @return void
 */
 private function createSrcImage () {
 $this->imageResource = $this->createImageFromFile();
 }
 /**
 * 跟據(jù)文件創(chuàng)建圖像GD 資源
 * @param string $fileName 文件名
 * @return gd resource
 */
 public function createImageFromFile($fileName = NULL)
 {
 if (!$fileName) {
 $fileName = $this->fileName;
 $imgType = $this->imageType;
 }
 if (!is_readable($fileName) || !file_exists($fileName)) {
  throw new Exception('Unable to open file "' . $fileName . '"');
 }
 if (!$imgType) {
 $imageInfo = $this->getImageInfo($fileName);
 $imgType = $imageInfo[2];
 }
 switch ($imgType) {
 case IMAGETYPE_GIF:
 $tempResource = imagecreatefromgif($fileName);
 break;
 case IMAGETYPE_JPEG:
 $tempResource = imagecreatefromjpeg($fileName);
 break;
 case IMAGETYPE_PNG:
 $tempResource = imagecreatefrompng($fileName);
 break;
 case IMAGETYPE_WBMP:
 $tempResource = imagecreatefromwbmp($fileName);
 break;
 case IMAGETYPE_XBM:
 $tempResource = imagecreatefromxbm($fileName);
 break;
 default:
 throw new Exception('Unsupport image type');
 }
 return $tempResource;
 }
 /**
 * 改變圖像大小
 * @param int $width 寬
 * @param int $height 高
 * @param string $flag 一般而言,允許截圖則用4,不允許截圖則用1; 假設要求一個為4:3比例的圖像,則:4=如果太長則自動刪除一部分 0=長寬轉(zhuǎn)換成參數(shù)指定的 1=按比例縮放,自動判斷太長還是太寬,長寬約束在參數(shù)指定內(nèi) 2=以寬為約束縮放 3=以高為約束縮放
 * @param string $bgcolor 如果不為null,則用這個參數(shù)指定的顏色作為背景色,并且圖像擴充到指定高寬,該參數(shù)應該是一個數(shù)組;
 * @return string
 */
 public function resizeImage($width, $height, $flag=1, $bgcolor=null) {
 $widthRatio = $width/$this->imageWidth;
 $heightRatio = $height/$this->imageHeight;
 switch ($flag) {
 case 1:
 if ($this->imageHeight < $height && $this->imageWidth < $width) {
 $endWidth = $this->imageWidth;
 $endHeight = $this->imageHeight;
 //return;
 } elseif (($this->imageHeight * $widthRatio)>$height) {
 $endWidth = ceil($this->imageWidth * $heightRatio);
 $endHeight = $height;
 } else {
 $endWidth = $width;
 $endHeight = ceil($this->imageHeight * $widthRatio);
 }
 break;
 case 2:
 $endWidth = $width;
 $endHeight = ceil($this->imageHeight * $widthRatio);
 break;
 case 3:
 $endWidth = ceil($this->imageWidth * $heightRatio);
 $endHeight = $height;
 break;
 case 4:
 $endWidth2 = $width;
 $endHeight2 = $height;
 if ($this->imageHeight < $height && $this->imageWidth < $width) {
 $endWidth = $this->imageWidth;
 $endHeight = $this->imageHeight;
 //return;
 } elseif (($this->imageHeight * $widthRatio)<$height) {
 $endWidth = ceil($this->imageWidth * $heightRatio);
 $endHeight = $height;
 } else {
 $endWidth = $width;
 $endHeight = ceil($this->imageHeight * $widthRatio);
 }
 break;
 default:
 $endWidth = $width;
 $endHeight = $height;
 break;
 }
 if ($this->imageResource==NULL) {
 $this->createSrcImage();
 }
 if($bgcolor){
 $this->newResource = imagecreatetruecolor($width,$height);
 $bg=ImageColorAllocate($this->newResource,$bgcolor[0],$bgcolor[1],$bgcolor[2]);
 ImageFilledRectangle($this->newResource,0,0,$width,$height,$bg);
 $tox=ceil(($width-$endWidth)/2);
 $toy=ceil(($height-$endHeight)/2);
 if($tox<0) $tox=0;
 if($toy<0) $toy=0;
 }else if ($flag==4) {
 $this->newResource = imagecreatetruecolor($endWidth2,$endHeight2);
 }else {
 $this->newResource = imagecreatetruecolor($endWidth,$endHeight);
 }
 $this->newResType = $this->imageType;
 imagecopyresampled($this->newResource, $this->imageResource, $tox, $toy, 0, 0, $endWidth, $endHeight,$this->imageWidth,$this->imageHeight);
 }
 /**
 * 給圖像加水印
 * @param string $waterContent 水印內(nèi)容可以是圖像文件名,也可以是文字
 * @param int $pos 位置0-9可以是數(shù)組
 * @param int $textFont 字體大字,當水印內(nèi)容是文字時有效
 * @param string $textColor 文字顏色,當水印內(nèi)容是文字時有效
 * @return string
 */
 public function waterMark($waterContent, $pos = 0, $textFont=5, $textColor="#ffffff") {
 $isWaterImage = file_exists($waterContent);
 if ($isWaterImage) {
 $waterImgRes = $this->createImageFromFile($waterContent);
 $waterImgInfo = $this->getImageInfo($waterContent);
 $waterWidth = $waterImgInfo[0];
 $waterHeight = $waterImgInfo[1];
 } else {
 $waterText = $waterContent;
 //$temp = @imagettfbbox(ceil($textFont*2.5),0,"./cour.ttf",$waterContent);
 if ($temp) {
 $waterWidth = $temp[2]-$temp[6];
 $waterHeight = $temp[3]-$temp[7];
 } else {
 $waterWidth = 100;
 $waterHeight = 12;
 }
 }
 if ($this->imageResource==NULL) {
 $this->createSrcImage();
 }
 switch($pos)
 {
 case 0://隨機
 $posX = rand(0,($this->imageWidth - $waterWidth));
 $posY = rand(0,($this->imageHeight - $waterHeight));
 break;
 case 1://1為頂端居左
 $posX = 0;
 $posY = 0;
 break;
 case 2://2為頂端居中
 $posX = ($this->imageWidth - $waterWidth) / 2;
 $posY = 0;
 break;
 case 3://3為頂端居右
 $posX = $this->imageWidth - $waterWidth;
 $posY = 0;
 break;
 case 4://4為中部居左
 $posX = 0;
 $posY = ($this->imageHeight - $waterHeight) / 2;
 break;
 case 5://5為中部居中
 $posX = ($this->imageWidth - $waterWidth) / 2;
 $posY = ($this->imageHeight - $waterHeight) / 2;
 break;
 case 6://6為中部居右
 $posX = $this->imageWidth - $waterWidth;
 $posY = ($this->imageHeight - $waterHeight) / 2;
 break;
 case 7://7為底端居左
 $posX = 0;
 $posY = $this->imageHeight - $waterHeight;
 break;
 case 8://8為底端居中
 $posX = ($this->imageWidth - $waterWidth) / 2;
 $posY = $this->imageHeight - $waterHeight;
 break;
 case 9://9為底端居右
 $posX = $this->imageWidth - $waterWidth-20;
 $posY = $this->imageHeight - $waterHeight-10;
 break;
 default://隨機
 $posX = rand(0,($this->imageWidth - $waterWidth));
 $posY = rand(0,($this->imageHeight - $waterHeight));
 break;  
 }
 imagealphablending($this->imageResource, true);
 if($isWaterImage) {
 imagecopy($this->imageResource, $waterImgRes, $posX, $posY, 0, 0, $waterWidth,$waterHeight); 
 } else {
 $R = hexdec(substr($textColor,1,2));
 $G = hexdec(substr($textColor,3,2));
 $B = hexdec(substr($textColor,5));
 $textColor = imagecolorallocate($this->imageResource, $R, $G, $B);
 imagestring ($this->imageResource, $textFont, $posX, $posY, $waterText, $textColor);    
 }
 $this->newResource = $this->imageResource;
 $this->newResType = $this->imageType;
 }
 /**
 * 生成驗證碼圖片
 * @param int $width 寬
 * @param string $height 高
 * @param int $length 長度
 * @param int $validType 0=數(shù)字,1=字母,2=數(shù)字加字母
 * @param string $textColor 文字顏色
 * @param string $backgroundColor 背景顏色
 * @return void
 */
 public function imageValidate($width, $height, $length = 4, $validType = 1, $textColor = '#000000', $backgroundColor = '#ffffff') {
 if ($validType==1) {
 $validString = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
 $validLength = 52;
 } elseif ($validType==2) {
 $validString = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
 $validLength = 62;
 } else {
 $validString = '123456789';
 $validLength = 9;
 }
 srand((int)time());
 $valid = '';
 for ($i=0; $i<$length; $i++) {
 $valid .= $validString{rand(0, $validLength-1)};
 }
 $this->newResource = imagecreate($width,$height);
 $bgR = hexdec(substr($backgroundColor,1,2));
 $bgG = hexdec(substr($backgroundColor,3,2));
 $bgB = hexdec(substr($backgroundColor,5,2));
 $backgroundColor = imagecolorallocate($this->newResource, $bgR, $bgG, $bgB);
 $tR = hexdec(substr($textColor,1,2));
 $tG = hexdec(substr($textColor,3,2));
 $tB = hexdec(substr($textColor,5,2));
 $textColor = imagecolorallocate($this->newResource, $tR, $tG, $tB);
 for ($i=0;$i<strlen($valid);$i++){
 imagestring($this->newResource,5,$i*$width/$length+3,2, $valid[$i],$textColor);
 }
 $this->newResType = IMAGETYPE_JPEG;
 return $valid;
 }
 /**
 * 顯示輸出圖像
 * @return void
 */
 public function display($fileName='', $quality=100) {
 $imgType = $this->newResType;
 $imageSrc = $this->newResource;
    switch ($imgType) {
 case IMAGETYPE_GIF:
 if ($fileName=='') {
 header('Content-type: image/gif');
 }
 imagegif($imageSrc, $fileName, $quality);
 break;
 case IMAGETYPE_JPEG:
 if ($fileName=='') {
 header('Content-type: image/jpeg');
 }
 imagejpeg($imageSrc, $fileName, $quality);
 break;
 case IMAGETYPE_PNG:
 if ($fileName=='') {
 header('Content-type: image/png');
 imagepng($imageSrc);
 } else {
 imagepng($imageSrc, $fileName);
 }
 break;
 case IMAGETYPE_WBMP:
 if ($fileName=='') {
 header('Content-type: image/wbmp');
 }
 imagewbmp($imageSrc, $fileName, $quality);
 break;
 case IMAGETYPE_XBM:
 if ($fileName=='') {
 header('Content-type: image/xbm');
 }
 imagexbm($imageSrc, $fileName, $quality);
 break;
 default:
 throw new Exception('Unsupport image type');
 }
 imagedestroy($imageSrc);
 }
 /**
 * 保存圖像
 * @param int $fileNameType 文件名類型 0使用原文件名,1使用指定的文件名,2在原文件名加上后綴,3產(chǎn)生隨機文件名
 * @param string $folder 文件夾路徑 為空為與原文件相同
 * @param string $param 參數(shù)$fileNameType為1時為文件名2時為后綴
 * @return void
 */
 public function save($fileNameType = 0, $folder = NULL, $param = '_miniature') {
 if ($folder==NULL) {
 $folder = dirname($this->fileName).DIRECTORY_SEPARATOR;
 }
 $fileExtName = FileSystem::fileExt($this->fileName, true);
 $fileBesicName = FileSystem::getBasicName($this->fileName, false);
 switch ($fileNameType) {
 case 1:
 $newFileName = $folder.$param;
 break;
 case 2:
 $newFileName = $folder.$fileBesicName.$param.$fileExtName;
 break;
 case 3:
 $tmp = date('YmdHis');
 $fileBesicName = $tmp;
 $i = 0;
 while (file_exists($folder.$fileBesicName.$fileExtName)) {
 $fileBesicName = $tmp.$i;
 $i++;
 }
 $newFileName = $folder.$fileBesicName.$fileExtName;
 break;
 default:
 $newFileName = $this->fileName;
 break;
 }
 $this->display($newFileName);
 return $newFileName;
 }
}
?>

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

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 日本中文一级片 | 欧美四级在线观看 | 欧美成人小视频 | 91在线视频精品 | 日本在线免费观看 | 91重口视频| av免费在线免费观看 | 99国产精品欲a | 他也色在线视频 | 91在线色视频 | 久久久人人爽 | 国产亚洲精品久久久久婷婷瑜伽 | 午夜视频在线观看免费视频 | 欧美一级高清片在线 | 色网在线视频 | 国产一区二区三区撒尿在线 | 免费亚洲视频在线观看 | 日本在线视频免费 | 国产麻豆久久 | 露脸各种姿势啪啪的清纯美女 | www.777含羞草| 亚洲一级网站 | 91麻豆精品国产91久久久更新资源速度超快 | 一区二区三区欧美视频 | 中午字幕无线码一区2020 | 精品久久久av | 一级黄色毛片播放 | 国产精品久久久免费看 | 永久久久| 亚洲国产精品久久久久久久久久久 | 欧美日韩亚洲国产精品 | 91久久久久久久久久久久久 | 久久久久久久久久久综合 | av在线免费电影 | 欧洲成人综合网 | 久久久久久久九九九九 | 黄色av一区二区三区 | 性猛aa久久久 | 久久精品成人影院 | 精品久久久久久久 | 毛片视频在线免费观看 |