我正在尝试使用一些文本生成图像,并且我编写了以下代码:
<?php
// Set the content-type
header('Content-Type: image/png');
// Create the image
$im = imagecreatetruecolor(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = '준수';
// Replace path by your own font path
$font = 'fonts/Walkway Black RevOblique.ttf';
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
现在,当我添加带有English
个字符的文字时,它可以正常工作,但是当我使用Korean
字符时,这些字符无效并获得此图片。
知道如何显示韩文文字吗?
由于
答案 0 :(得分:0)
看起来Walkway Black RevOblique.ttf
不是韩文字体。尝试下载并使用韩文版。