hello,
I had a problem to work with image-manipulation functions (gd):
I use the php 4.3.2 version for win32, and there is the script:
......
if (function_exists("imagegif")) {
header ("Content-type: image/gif");
imagegif ($im);
}
else
die('no immage support');
.....
I changed the configuration, the options:
extension=php_gd2.dll
extension=php_gettext.dll
became available.
When I run the script, I received the message:
No image support Warning: Unknown(): Unable to load dynamic library './php_gd2.dll' ...
In the php/dlls folder I didn't found this two dlls.
Please help, must I install some additional gd-libraries?
thanks in advance.