Hi there,
so I got this script from Sergio working:
<?php
Header("Content-type: image/jpeg");
$im= ImageCreate(220,210);
$vert = ImageColorAllocate($im, 0, 255, 00);
ImageJpeg($im);
ImageDestroy($im);
?>
I simply installed the "php-4.0.1pl2-Win32.zip" version from this site on my PWS.
I then changed the php.ini entries to
extension_dir = c:/php
which is my php-directory and activated
extension=php_gd.dll
After that, I replaced all files in the php-directory with those from download.swwwing.com/php4/modules/
and additionaly took the files
php4isapi.dll
php4ts.dll
phpts.exe
from the core-directory, renamed phpts.exe to php.exe and thats it.
The problem that remains, is that imagecreategif still doesn't seem to work. I also wonder if I must put an "@" before the function call since then the parser doesn't return the "No GIF-support" Error.
Anyone there to help me?!?