At 08.05.01  15:14, you wrote:
>I have compiled PHP with this options,
>
>./configure --with-zlib=/usr/local/src/zlib --with-png=/usr/local/src/libpng
>  --with-gd=/usr/local/src/gd --with-pgsql=/usr/local/pgsql --with-apache=../
>apache --enable-track-vars

mmh - sounds good, did you test the php-installation  with <? phpinfo() ?>
Try this:
<?php
header ("content-type: image/png");
$im = ImageCreateFromPng("test.png");
ImagePng($im);
?>
supposing you have a non white test.php, youŽll see your picture
HTH Oliver


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to