为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我一输出中文就不能显示图片呢?

<?php

header("Content-Type:text/html;   charset=utf-8");

header("Content-type: image/png");

//echo '创建一张图片';

$img=imagecreatetruecolor(200, 200);

$red=imagecolorallocate($img, 0x00, 0x00, 0x00);

imagefill($img, 0, 0, $red);

imagepng($img);

imagedestroy($img);


正在回答

1 回答

header("Content-Type:text/html;   charset=utf-8");
header("Content-type: image/png");
//echo '创建一张图片'
$img=imagecreatetruecolor(200, 200);
$red=imagecolorallocate($img, 0xFF, 0x00, 0x00);
$black = imagecolorallocate($img,0x00,0x00,0x00);
imagefill($img, 0, 0, $red);
imagestring($img,5,10,10,'hello',$black);
imagepng($img);
imagedestroy($img);

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我一输出中文就不能显示图片呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信