学前了解:
在PHP中可以通过GD库处理图像
创建一个图像应该完成如下所示的四个基本步骤:
1.创建图像
2.绘制图像
3.输出图像
header函数注意点
在该函数之前,不能输出任何内容
在我们的PHP代码 的函数里面,我们使用的/开头的路径 这个/不是指 web根目录,而是操作系统的 文件的根目录!
4.释放资源
<?php header(‘Content-type:image/jpeg‘);//默认情况header(‘Content-type:text/html‘); $img=imagecreatetruecolor(200,200);//新建一个长和高都为200像素的真彩色图像 $color1=imagecolorallocate($img,50,50,50);//分配颜色 $color2=imagecolorallocate($img,229,36,36);//分配颜色 $color3=imagecolorallocate($img,46,219,50);//分配颜色 imagefill($img,0,0,$color3); imagejpeg($img); imagedestroy($img);
时间: 2024-10-05 23:26:48