GD2输出文字 博客分类: PHP GD2填充几何图形
程序员文章站
2024-03-25 09:05:22
...
一 代码
<?php // 建立一幅 100X30 的图像 $im = imagecreate(100, 30); // 白色背景和蓝色文本 $bg = imagecolorallocate($im, 255, 255, 255); $textcolor = imagecolorallocate($im, 0, 0, 255); // 把字符串写在图像左上角 imagestring($im, 5, 0, 0, "Hello world!", $textcolor); // 输出图像 header("Content-type: image/png"); imagepng($im); ?>
二 运行结果