1>GD库简介
GD指的是Graphic Device,PHP的GD库是用来处理图形的扩展库,通过GD库提供的一系列API,可以对图像进行处理或者直接生成新的图片。
PHP除了能进行文本处理以外,通过GD库,可以对JPG、PNG、GIF、SWF等图片进行处理。GD库常用在图片加水印,验证码生成等方面。
PHP默认已经集成了GD库,只需要在安装的时候开启就行。
header("content-type: image/png");
$img=imagecreatetruecolor(100, 100);
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);
imagefill($img, 0, 0, $red);
imagepng($img);
imagedestroy($img);
绘制线条
imageline()
语法:imageline( img, i m g , sX, sY, s Y , eX, eY, e Y , col);
绘制圆
imagearc()
语法:imagearc ( image, i m a g e , cx , cy, c y , w , h, h , startAngle, endAngle, e n d A n g l e , color )
$img = imagecreatetruecolor(200, 200);
// 分配颜色
$red = imagecolorallocate($img, 255, 0, 0);
$white = imagecolorallocate($img, 255, 255, 255);
//背景填充白色
imagefill($img,0,0,$white);
// 画一个红色的圆
imagearc($img, 100, 100, 150, 150, 0, 360, $red);
imagepng($img);
// 释放内存
imagedestroy($img);
$img = imagecreatetruecolor(200, 200);
// 分配颜色
$red = imagecolorallocate($img, 255, 0, 0);
$white = imagecolorallocate($img, 255, 255, 255);
imagefill($img,0,0,$white);
// 画一个红色的矩形
imagerectangle ($img,50,50,100 ,100 ,$red);
imagepng($img);
// 释放内存
imagedestroy($img);
header("content-type: image/png");
//imagestring字体大小设置不了
$img = imagecreatetruecolor(100, 100);
$red = imagecolorallocate($img, 0xFF, 0x00, 0x00);
imagestring($img, 5, 10, 10, "Hello world", $red);
imagepng($img);
imagedestroy($img);
$img1=imagecreatetruecolor(200,200);
$red=imagecolorallocate($img1,255,0,0);
$white=imagecolorallocate($img1,255,255,255);
imagefill($img1,0,0,$red);
$font="C:\Windows\Fonts\simhei.ttf";
imagettftext($img1,23,0,100,100,$white,$font,"你好吗");
imagepng($img1);
imagedestroy($img1);
//绘制10个噪点
for($i=0;$i<10;$i++) {
imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black);
imagesetpixel($img, rand(0, 100) , rand(0, 100) , $green);
}
输出图像文件
通过imagepng可以直接输出图像到浏览器,通过指定路径参数将图像保存到文件中
1. imagepng()
意义:将图片保存成png格式
语法:imagepng( img, i m g , filename)
2. imagejpeg()
意义:将图片保存成jpeg格式
语法:imagepng( img, i m g , filename,$quality)
3. imagegif()
意义:将图片保存成gif格式
语法:imagegif( img, i m g , filename)案例:
1. 随机产生验证码(php)
2. 给图片添加水印