我一直在尝试编辑图像并添加²,我已经尝试了各种不同的方式在谷歌叔叔打击问题,但我只是竞争激烈,以下代码是:
header("Content-type: image/png; charset=UTF-8");
define('CHARSET', 'ISO-8859-1');
define('REPLACE_FLAGS', ENT_COMPAT | ENT_XHTML);
function html($string) {
return htmlspecialchars($string, REPLACE_FLAGS, CHARSET);
}
$string = 'Special symbol: ²';
$string = html($string);
$im = imagecreatefrompng("imgURL");
$orange = imagecolorallocate($im, 209, 209, 209);
$top = 60;
$bot = 160;
$size = 100;
imagestring($im, $size, $top, $bot, $string, $orange);
imagepng($im);
imagedestroy($im);
非常感谢任何帮助