<?php
$file = imagecreate(100,50); //先生成图片资源
$color =imagecolorallocate($file,255,255,255); //白色
$c = imagecolorallocate($file,0,100,255);
imagefill($file,0,0,$c); //两个数字是颜色填充从哪里开始,0,0代表左上角
imagechar($file,10,20,20,'pk',$color); //s生成文字 第一个数字控制文字大小1-5超过五默认为5
imagechar($file,10,40,20,'h',$color); //第2,3个数字是控制文字在图片中的位置,‘p’是输入到图片上的字符
imagechar($file,10,60,20,'p',$color); //imggechar只能输入一个字符,输入多个字符,默认为第一个
header('Content-Type:image/png'); //输出图片格式 //没有这句输出的是字符
imagepng($file);
?>
php生成简单图片
最新推荐文章于 2024-09-24 10:14:43 发布