PHP学习笔记-GD库作图

<?php
header("Content-type: image/png");
$image=imageCreatetruecolor(200,100);
$text_color=imagecolorallocate($image,255,255,255);
imagestring($image,5,0,0,"Hello world!",$text_color);
imagepng($image); //输出图像
imagedestory($image); //销毁图像对像
?>

版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(PHP学习笔记-GD库作图)