最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php 创建图片教程
时间:2022-07-02 10:15:23 编辑:袖梨 来源:一聚教程网
$;
$;
$im = ImageCreateTrueColor($width, $height);
$white = ImageColorAllocate ($im, 255, 255, 255);
$blue = ImageColorAllocate ($im, 0, 0, 64);
ImageFill($im, 0, 0, $blue);
//ImageLine($im, 0, 0, $width, $height, $white);
ImageString($im, 10, 100, 120, 'Hello,PHP', $white);
Header ('Content-type: image/png');
ImagePng($im);
ImageDestroy($im);
?>
相关文章
- 使用Docker部署ASP.NET Core程序 09-17
- ASP.NET Core中间件用法与官方常用中间件介绍 09-17
- 部署ASP.NET Core程序到Linux系统 09-17
- ASP.NETM5C中_5iewStart.cshtml作用介绍 09-17
- Qoder 能替代 Codex 吗?从安装到实战完整上手 09-17
- 用一句需求搭建进销存:REBUILD AI 实测与边界分析 09-17