search
HomeBackend DevelopmentPHP TutorialGeneral image processing class implemented in PHP_PHP tutorial
General image processing class implemented in PHP_PHP tutorialJul 13, 2016 am 10:00 AM
phpmainpicturedeal withaccomplisharticleofkindUniversal

General image processing class implemented by PHP

This article mainly introduces the general image processing class implemented by PHP, which can realize zooming, cutting, photo frame, watermark, Functions such as sharpening, rotating, flipping, transparency, and inverting colors have certain reference value. Friends in need can refer to it

The example in this article describes the general image processing class implemented by PHP. Share it with everyone for your reference. The details are as follows:

The image processing function functions: zoom, cut, photo frame, watermark, sharpen, rotate, flip, transparency, invert color, the idea of ​​processing and saving historical records: automatically generate a new image when a picture is changed , the naming method can consider adding steps based on the original picture, for example: picture name __ what step. In some web applications that require advanced image processing functions, you can refer to this class.

?

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

class picture

{

var $PICTURE_URL;//Picture to be processed

var $DEST_URL="temp__01.jpg";//Generate target image location

var $PICTURE_CREATE;//Picture to be created

var $TURE_COLOR;//Create a new true color image

var $PICTURE_WIDTH; //Original picture width

var $PICTURE_HEIGHT;//original picture height

/*

The type of watermark, the default is watermark text

*/

var $MARK_TYPE=1;

var $WORD;//Text after UTF-8

var $WORD_X;//text abscissa

var $WORD_Y;//text ordinate

var $FONT_TYPE;//Font type

var $FONT_SIZE="12";//Font size

var $FONT_WORD;//text

var $ANGLE=0;//The angle of the text, the default is 0

var $FONT_COLOR="#000000";//Text color

var $FONT_PATH="font/simkai.ttf";//Font library, the default is Song Dynasty

var $FORCE_URL;//watermark image

var $FORCE_X=0; //watermark abscissa

var $FORCE_Y=0;//Watermark vertical coordinate

var $FORCE_START_X=0;//The abscissa of the picture where the watermark is cut

var $FORCE_START_Y=0;//The ordinate of the picture where the watermark is cut

var $PICTURE_TYPE;//Picture type

var $PICTURE_MIME;//Output header

/*

If the scaling ratio is 1, scale according to the scaling height and width

*/

var $ZOOM=1;//Zoom type

var $ZOOM_MULTIPLE; //Zoom ratio

var $ZOOM_WIDTH; //Zoom width

var $ZOOM_HEIGHT;//Zoom height

/*

Crop, proportional and fixed length and width

*/

var $CUT_TYPE=1;//Cut type

var $CUT_X=0;//abscissa coordinate of cropping

var $CUT_Y=0;//The vertical coordinate of cropping

var $CUT_;//Cut width

var $CUT_HEIGHT=100; //Cutting height

/*

Sharpening

*/

var $SHARP="7.0";//sharpening degree

/*

Transparency processing

*/

var $ALPHA='100'; //Transparency is between 0-127

var $ALPHA_X="90";

var $ALPHA_Y="50";

/*

Rotate at any angle

*/

var $CIRCUMROTATE="90.0";//Note, it must be a floating point number

/*

Error message

*/

var $ERROR=array(

'unalviable'=>'No related pictures found!'

);

/*

Constructor: Function initialization

*/

function __construct($PICTURE_URL)

{

$this->get_info($PICTURE_URL);

}

function get_info($PICTURE_URL)

{

/*

Process the information of the original image, first check whether the image exists, if not, the corresponding information will be given

*/

@$SIZE=getimagesize($PICTURE_URL);

if(!$SIZE)

{

exit($this->ERROR['unalviable']);

}

//Get the information type, width, and height of the original image

$this->PICTURE_MIME=$SIZE['mime'];

$this->PICTURE_;

$this->PICTURE_HEIGHT=$SIZE[1];

//Create pictures

switch($SIZE[2])

{

case 1:

$this->PICTURE_CREATE=imagecreatefromgif($PICTURE_URL);

$this->PICTURE_TYPE="imagejpeg";

$this->PICTURE_EXT="jpg";

break;

case 2:

$this->PICTURE_CREATE=imagecreatefromjpeg($PICTURE_URL);

$this->PICTURE_TYPE="imagegif";

$this->PICTURE_EXT="gif";

break;

case 3:

$this->PICTURE_CREATE=imagecreatefrompng($PICTURE_URL);

$this->PICTURE_TYPE="imagepng";

$this->PICTURE_EXT="png";

break;

}

/*

Convert text color from hexadecimal to decimal

*/

preg_match_all("/([0-f]){2,2}/i",$this->FONT_COLOR,$MATCHES);

if(count($MATCHES)==3)

{

$this->RED=hexdec($MATCHES[0][0]);

$this->GREEN=hexdec($MATCHES[0][1]);

$this->BLUE=hexdec($MATCHES[0][2]);

}

}

//end of __construct

/*

Convert hexadecimal color to decimal (R, G, B)

*/

function hex2dec()

{

preg_match_all("/([0-f]){2,2}/i",$this->FONT_COLOR,$MATCHES);

if(count($MATCHES)==3)

{

$this->RED=hexdec($MATCHES[0][0]);

$this->GREEN=hexdec($MATCHES[0][1]);

$this->BLUE=hexdec($MATCHES[0][2]);

}

}

//Zoom type

function zoom_type($ZOOM_TYPE)

{

$this->ZOOM=$ZOOM_TYPE;

}

//Scale the image, if the height and width are not specified, it will be scaled

function zoom()

{

//Zoom size

if($this->ZOOM==0)

{

$this->ZOOM_;gt;PICTURE_WIDTH * $this->ZOOM_MULTIPLE;

$this->ZOOM_HEIGHT=$this->PICTURE_HEIGHT * $this->ZOOM_MULTIPLE;

}

//Create a new true color image

$this->TRUE_COLOR=imagecreatetruecolor($this->ZOOM_WIDTH,$this->ZOOM_HEIGHT);

$WHITE=imagecolorallocate($this->TRUE_COLOR,255,255,255);

imagefilledrectangle($this->TRUE_COLOR,0,0,$this->ZOOM_WIDTH,$this->ZOOM_HEIGHT,$WHITE);

imagecopyresized($this->TRUE_COLOR,$this->PICTURE_CREATE,0,0,0,0,$this->ZOOM_WIDTH,$this->ZOOM_HEIGHT,$this->PICTURE_WIDTH,$this ->PICTURE_HEIGHT);

}

//end of zoom

//Crop the picture, according to coordinates or automatically

function cut()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->CUT_WIDTH,$this->CUT_WIDTH);

imagecopy($this->TRUE_COLOR,$this->PICTURE_CREATE, 0, 0, $this->CUT_X, $this->CUT_Y,$this->CUT_WIDTH,$this->CUT_HEIGHT );

}

//end of cut

/*

Put text or pictures on the picture

Watermark text

*/

function _mark_text()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$this->WORD=mb_convert_encoding($this->FONT_WORD,'utf-8','gb2312');

/*

Get the range of text using TrueType font

*/

$TEMP = imagettfbbox($this->FONT_SIZE,0,$this->FONT_PATH,$this->WORD);

$WORD_LENGTH=strlen($this->WORD);

$WORD_WIDTH =$TEMP[2] - $TEMP[6];

$WORD_HEIGHT =$TEMP[3] - $TEMP[7];

/*

The default position of the text watermark is the lower right corner

*/

if($this->WORD_X=="")

{

$this->WORD_X=$this->PICTURE_WIDTH-$WORD_WIDTH;

}

if($this->WORD_Y=="")

{

$this->WORD_Y=$this->PICTURE_HEIGHT-$WORD_HEIGHT;

}

imagesettile($this->TRUE_COLOR,$this->PICTURE_CREATE);

imagefilledrectangle($this->TRUE_COLOR,0,0,$this->PICTURE_WIDTH,$this->PICTURE_HEIGHT,IMG_COLOR_TILED);

$TEXT2=imagecolorallocate($this->TRUE_COLOR,$this->RED,$this->GREEN,$this->Blue);

imagettftext($this->TRUE_COLOR,$this->FONT_SIZE,$this->ANGLE,$this->WORD_X,$this->WORD_Y,$TEXT2,$this->FONT_PATH,$this->WORD);

}

/*

水印图片

*/

function _mark_picture()

{

/*

获取水印图片的信息

*/

@$SIZE=getimagesize($this->FORCE_URL);

if(!$SIZE)

{

exit($this->ERROR['unalviable']);

}

$FORCE_PICTURE_;

$FORCE_PICTURE_HEIGHT=$SIZE[1];

//创建水印图片

switch($SIZE[2])

{

case 1:

$FORCE_PICTURE_CREATE=imagecreatefromgif($this->FORCE_URL);

$FORCE_PICTURE_TYPE="gif";

break;

case 2:

$FORCE_PICTURE_CREATE=imagecreatefromjpeg($this->FORCE_URL);

$FORCE_PICTURE_TYPE="jpg";

break;

case 3:

$FORCE_PICTURE_CREATE=imagecreatefrompng($this->FORCE_URL);

$FORCE_PICTURE_TYPE="png";

break;

}

/*

判断水印图片的大小,并生成目标图片的大小,如果水印比图片大,则生成图片大小为水印图片的大小。否则生成的图片大小为原图片大小。

*/

$this->NEW_PICTURE=$this->PICTURE_CREATE;

if($FORCE_PICTURE_WIDTH>$this->PICTURE_WIDTH)

{

$CREATE_;gt;FORCE_START_X;

}

else

{

$CREATE_;gt;PICTURE_WIDTH;

}

if($FORCE_PICTURE_HEIGHT>$this->PICTURE_HEIGHT)

{

$CREATE_HEIGHT=$FORCE_PICTURE_HEIGHT-$this->FORCE_START_Y;

}

else

{

$CREATE_HEIGHT=$this->PICTURE_HEIGHT;

}

/*

创建一个画布

*/

$NEW_PICTURE_CREATE=imagecreatetruecolor($CREATE_WIDTH,$CREATE_HEIGHT);

$WHITE=imagecolorallocate($NEW_PICTURE_CREATE,255,255,255);

/*

将背景图拷贝到画布中

*/

imagecopy($NEW_PICTURE_CREATE, $this->PICTURE_CREATE, 0, 0, 0, 0,$this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

/*

将目标图片拷贝到背景图片上

*/

imagecopy($NEW_PICTURE_CREATE, $FORCE_PICTURE_CREATE, $this->FORCE_X, $this->FORCE_Y, $this->FORCE_START_X, $this->FORCE_START_Y,$FORCE_PICTURE_WIDTH,$FORCE_PICTURE_HEIGHT);

$this->TRUE_COLOR=$NEW_PICTURE_CREATE;

}

//end of mark

function alpha_()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$rgb="#CDCDCD";

$tran_color="#000000";

for($j=0;$jPICTURE_HEIGHT-1;$j )

{

for ($i=0;$iPICTURE_WIDTH-1;$i )

{

$rgb = imagecolorat($this->PICTURE_CREATE,$i,$j);

$r = ($rgb >> 16) & 0xFF;

$g = ($rgb >> 8) & 0xFF;

$b = $rgb & 0xFF;

$now_color=imagecolorallocate($this->PICTURE_CREATE,$r,$g,$b);

if ($now_color==$tran_color)

{

continue;

}

else

{

$color=imagecolorallocatealpha($this->PICTURE_CREATE,$r,$g,$b,$ALPHA);

imagesetpixel($this->PICTURE_CREATE,$ALPHA_X $i,$ALPHA_Y $j,$color);

}

$this->TRUE_COLOR=$this->PICTURE_CREATE;

}

}

}

/*

图片旋转:

沿y轴旋转

*/

function turn_y()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

for ($x = 0; $x PICTURE_WIDTH; $x )

{

imagecopy($this->TRUE_COLOR, $this->PICTURE_CREATE, $this->PICTURE_WIDTH - $x - 1, 0, $x, 0, 1, $this->PICTURE_HEIGHT);

}

}

/*

沿X轴旋转

*/

function turn_x()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

for ($y = 0; $y PICTURE_HEIGHT; $y )

{

imagecopy($this->TRUE_COLOR, $this->PICTURE_CREATE, 0, $this->PICTURE_HEIGHT - $y - 1, 0, $y, $this->PICTURE_WIDTH, 1);

}

}

/*

任意角度旋转

*/

function turn()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

imageCopyResized($this->TRUE_COLOR,$this->PICTURE_CREATE,0,0,0,0,$this->PICTURE_WIDTH,$this->PICTURE_HEIGHT,$this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$WHITE=imagecolorallocate($this->TRUE_COLOR,255,255,255);

$this->TRUE_COLOR=imagerotate ($this->TRUE_COLOR, $this->CIRCUMROTATE, $WHITE);

}

/*

图片锐化

*/

function sharp()

{

$this->TRUE_COLOR=imagecreatetruecolor($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$cnt=0;

for ($x=0; $xPICTURE_WIDTH; $x )

{

for ($y=0; $yPICTURE_HEIGHT; $y )

{

$src_clr1 = imagecolorsforindex($this->TRUE_COLOR, imagecolorat($this->PICTURE_CREATE, $x-1, $y-1));

$src_clr2 = imagecolorsforindex($this->TRUE_COLOR, imagecolorat($this->PICTURE_CREATE, $x, $y));

$r = intval($src_clr2["red"] $this->SHARP*($src_clr2["red"]-$src_clr1["red"]));

$g = intval($src_clr2["green"] $this->SHARP*($src_clr2["green"]-$src_clr1["green"]));

$b = intval($src_clr2["blue"] $this->SHARP*($src_clr2["blue"]-$src_clr1["blue"]));

$r = min(255, max($r, 0));

$g = min(255, max($g, 0));

$b = min(255, max($b, 0));

if (($DST_CLR=imagecolorexact($this->PICTURE_CREATE, $r, $g, $b))==-1)

$DST_CLR = imagecolorallocate($this->PICTURE_CREATE, $r, $g, $b);

$cnt ;

if ($DST_CLR==-1) die("color allocate faile at $x, $y ($cnt).");

imagesetpixel($this->TRUE_COLOR, $x, $y, $DST_CLR);

}

}

}

/*

将图片反色处理??

*/

function return_color()

{

/*

创建一个画布

*/

$NEW_PICTURE_CREATE=imagecreate($this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$WHITE=imagecolorallocate($NEW_PICTURE_CREATE,255,255,255);

/*

将背景图拷贝到画布中

*/

imagecopy($NEW_PICTURE_CREATE, $this->PICTURE_CREATE, 0, 0, 0, 0,$this->PICTURE_WIDTH,$this->PICTURE_HEIGHT);

$this->TRUE_COLOR=$NEW_PICTURE_CREATE;

}

/*

生成目标图片并显示

*/

function show()

{

// 判断浏览器,若是IE就不发送头

if(isset($_SERVER['HTTP_USER_AGENT']))

{

$ua = strtoupper($_SERVER['HTTP_USER_AGENT']);

if(!preg_match('/^.*MSIE.*)$/i',$ua))

{

header("Content-type:$this->PICTURE_MIME");

}

}

$OUT=$this->PICTURE_TYPE;

$OUT($this->TRUE_COLOR);

}

/*

生成目标图片并保存

*/

function save_picture()

{

// 以 JPEG 格式将图像输出到浏览器或文件

$OUT=$this->PICTURE_TYPE;

if(function_exists($OUT))

{

// 判断浏览器,若是IE就不发送头

if(isset($_SERVER['HTTP_USER_AGENT']))

{

$ua = strtoupper($_SERVER['HTTP_USER_AGENT']);

if(!preg_match('/^.*MSIE.*)$/i',$ua))

{

header("Content-type:$this->PICTURE_MIME");

}

}

if(!$this->TRUE_COLOR)

{

exit($this->ERROR['unavilable']);

}

else

{

$OUT($this->TRUE_COLOR,$this->DEST_URL);

$OUT($this->TRUE_COLOR);

}

}

}

/*

析构函数:释放图片

*/

function __destruct()

{

/*释放图片*/

imagedestroy($this->TRUE_COLOR);

imagedestroy($this->PICTURE_CREATE);

}

//end of class

}

?>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/973120.htmlTechArticlephp实现的通用图片处理类 这篇文章主要介绍了php实现的通用图片处理类,可实现针对图片的缩放、剪切、相框、水印、锐化、旋转、翻转、...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.