I'm trying to do something with gd and php
But I want the size to be big. I if i make the size below 20, it will change sizes, but once i go above 20, it seems to always be the same size (20), no matter how big i make it. Heres the code i made:
<?php
header( "Content-type: image/png");
$image = imagecreate( 400, 200 );
$red = imagecolorallocate($image, 255,0,0 );
$blue = imagecolorallocate($image, 0,0,255 );
imageString( $image, "20", "5", "5", "Jello", $blue );
imagepng($image);
?>
Any suggestions?
Thanks,
Jason