On Wed, June 21, 2006 1:06 pm, Beauford wrote:
> This is the output from <?php var_dump(gd_info()); ?>. As far as I can
> tell,
> jpeg support is enabled. It also says it is if I run phpinfo(). Yet is
> still
> doesn't work.
>
> Anyone know of a way I can test this further. A small script perhaps.

<?php
  $image = imagecreatetruecolor(50, 50);
  imagefilledrectangle($image, 0, 0, 50, 50, 0xffffff);
  imagejpeg($image);
?>

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to