PHP interesse |
|
Ik wil graag een afbeelding genereren via GD met text,
Deze text bevat Japanse tekens.
Deze tekens werken niet met ASCII encoding
dus ik probeer de encoding van de file aan te passen naar UTF-8
Alleen dan krijg ik dit resultaat:
Citaat: Warning: Cannot modify header information - headers already sent by (output started at /usr/opt/usr/wa4o6920633/DOMAIN/HTML/jap.php:1) in /usr/opt/usr/wa4o6920633/DOMAIN/HTML/jap.php on line 2
�PNG IHDRnV,�PLTE���U��~%IDAT�c`�"H`l ����<2�-�&>n>>.��~�hd ��ՊIEND�B`�
mijn code:
<?php
header("Content-type: image/png; charset=utf-8");
//include("char.php");
$im = @imagecreate(110, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 255, 255, 255);
$text_color = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 3, 5, 3, "dwd", $text_color);
imagepng($im);
imagedestroy($im);
?>
<?php header("Content-type: image/png; charset=utf-8"); //include("char.php"); $im = @imagecreate(110, 20) or die("Cannot Initialize new GD image stream");$background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 0, 0, 0); imagestring($im, 3, 5, 3, "dwd", $text_color); imagepng($im); imagedestroy($im); ?>
ps.
De include die ik geëscaped heb,
bevat 2 functies (Katakana() en Hiragana()) om van text de japanse tekens te maken.
|