1. 首页
  2. 数据库
  3. 其它
  4. 用PHP代码在网页上生成图片

用PHP代码在网页上生成图片

上传者: 2020-12-23 03:50:56上传 PDF文件 33.27KB 热度 11次
代码很简单,这里就不多废话了, <?php /** * Created by PhpStorm. * User: Administrator * Date: 2015/6/29 * Time: 21:25 */ header('Content-type:image/png');//设置mime type $img = imagecreate(400,300);//设置图片像素 imagecolorallocate($img,255,255,255);//给图片上色 imageellipse($img,200,200,50,50,imagecolorallocate($img
用户评论