KeyStorm
Elite Member
Inn-sewer-ants-pollie-sea
Posts: 2156 Reputation: 45
38 / / –
Joined: Jan 2003
|
RE: PHP GD help
code: $im = imagecreatetruecolor(50, 50);
imagesavealpha($im,true);
imagealphablending($im, false);
$bg = imagecolorallocatealpha($im, 0, 0, 0, 127);
imagefill($im,0,0,$bg);
$font['color'] = imagecolorallocatealpha($im, 0, 0, 255, 25);
imagettftext($im, 10, 0, 0, 15, $font['color'], $font['path'], 'test'); //TTF text
header("Content-type: image/png");
imagepng($im);
imagedestroy($im);
This works
This post was edited on 09-09-2005 at 05:06 PM by KeyStorm.
|
|