php GD的使用

日期:2022-03-23 15:12:14 作者:磊落不羁 栏目:基本语法 评论(0)
以下是学习的一段基础性知识代码 内容包含了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)...