Wotcha,
I have a shopping site with lots of products... Each one has an image of it naturally. Every time the product is mentioned the image is shown. Sometimes as a thumbnail sometimes full size.
I was planning on using GD to dynamically rezise the images using the ImageCopy Resampled function.
However I have stored the images in a MySQL DB and I dont see any way of getting something like
$src_image = imagecreatefromjpg($DB_OUTPUT['img'])
to work as it seems the imagecreatefromjpg can only accept a file as its input.
Is there any way of working around this or do I just have to store my images in a filesystem instead of a database?
MrRosary