Still the black background
This is what I have now: (Not all of it, just the image part
)
code:
$im = imagecreatetruecolor($width, $height);
imagealphablending($im, true);
imagesavealpha($im, true);
imagecolorallocatealpha($im, 0, 0, 0, 127);
$font['color'] = imagecolorallocatealpha($im, 0, 0, 255, 25);
imagettftext($im, $font['size'], 0, 0, 15, $font['color'], $font['path'], $string); //TTF text
imagepng($im);
imagedestroy($im);
I'm using FF 1.0.6 btw
, so no IE here