一聚教程网:一个值得你收藏的教程网站

热门教程

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);

?>

热门栏目