php GD的使用
以下是学习的一段基础性知识代码 内容包含了GD常用的几个函数以及用法<?php
header('Content-type:image/png'); //用于向浏览器输出图片的指示
$res=imagecreatetruecolor(500,600); //创建画布
$red=imagecolorallocate($res,255,0,0); //设置颜色
$green=imagecolorallocate($res,0,255,0);
$blue=imagecolorallocate($res,0,0,255)...