2017年11月22日的文章

王明昌阅读(5122)赞(1)
源码如下: <?php header("content-type:text/html;charset=utf-8"); $img = imagecreatetruecolor(464,310); $red = imagecoloral...

王明昌阅读(4200)赞(1)
思路 建立画布 设置颜色 设置背景 作画(重要) 保存输出 移除画布 建立画布 只需设置宽和高 $img = imagecreatetruecolor(500,500); 设置颜色 imagecolorallocate(画布资源,R,G,B...