version gd library

chrisly

Verified User
Joined
Apr 26, 2005
Messages
26
Hello

Where can I find the version of gd-library?
phpinfo() show: 2.0.28
but /usr/local/directadmin/customapache/build show: 2.0.33

The reason why I asked is:
A client would like the gallery: http://gallery.menalto.com/modules.php?op=modload&name=News&fil=index
when he upload a image with a resolutie of 2048x1536, the gallery don't make thumbnail of this image.

And I look at the 'what is new section' of gd library (http://www.boutell.com/gd/manual2.0.33.html#whatsnew2.0.33)
and found in 2.0.29 a issue about: 'with images with extremely large dimensions'

Is this problem really come from gd-library?

please help me out, thanx.
 
The problem is probably not with GD... Gallery uses either NetPBM or ImageMagick to manipulate images and create thumbnails... Which utility are you using? Can you run them outside of gallery successfully? i.e. with ImageMagick:

convert image.jpg -resize 120x120 thumb.jpg

There might be an apache error log somewhere that would explain what the actual error is, or you may have to turn up gallery's error_reporting in order to see the errors.
 
Last edited:
Back
Top