I tried to create a image with a character but failed, my code is shown as follow, can you help me, thx in advance!!!
<?
$new_w=100;
$new_h=100;
header("Content-type: image/gif");
$dst_img=ImageCreate($new_w,$new_h);
$white = imagecolorallocate($dst_img, 255, 255, 255);
$black= imagecolorallocate($dst_img, 0, 0, 0);
imagechar($dst_img, 1, 20, 20, "C", $black);
?>