StatiK76
December 8th, 2002, 02:15
Displaying jpg/png thumbnails ... Am I correct in assuming this can only be done using gd with apache? Is there a better known method?

StatiK76

elmore
December 8th, 2002, 02:59
gd is one way of doing it. There's loads of stuff you could do...

I'm assuming that what you're looking for is resizing of one image correct?

gd is probably best for doing that.

frisco
December 8th, 2002, 03:35
Displaying jpg/png thumbnails ... Am I correct in assuming this can only be done using gd with apache? Is there a better known method?

StatiK76

what are you trying to do, what is your end goal?

ImageMagick, GD, xv, Imager come to mind, but without knowing exactly what you're trying to do, i dont know what is best for you.

StatiK76
December 8th, 2002, 04:25
Sorry boys - I should have explained myself with a little more detail .. I was looking to be able to thumbnail jpg / png files ... And for that, apparently I required gd for image manipulation. So, two commands solved everything ..

# pkg_add -v ftp://ftp.openbsd.org/pub/OpenBSD/3.2/packages/i386/php4-gd-4.2.3.tgz
Automatically downloads all the dependencies, and installs them.

# /usr/local/sbin/phpxs -a gd
Automatically enables gd in the php.ini file.


StatiK76

StatiK76
December 8th, 2002, 05:20
oh yea - then (obviously) restart apache.

StatiK76