Re: [PHP] Resizing Images Uploaded to Web Page

2003-03-08 Thread Hugh Danaher
image with a quality of 80 ImageDestroy($image); ImageDestroy($image1); ?> - Original Message - From: "Liam Gibbs" <[EMAIL PROTECTED]> To: "php list" <[EMAIL PROTECTED]> Sent: Saturday, March 08, 2003 12:32 PM Subject: Re: [PHP] Resizing Images Uploaded

Re: [PHP] Resizing Images Uploaded to Web Page

2003-03-08 Thread Weston Houghton
You'll need to either use the gd functions, or my recommendation, get the imagick module and use it. Both should do an excellent job. iMagick is in PEAR. Wes On Saturday, March 8, 2003, at 03:15 PM, Vernon wrote: I have users uploading images to a server and need to have those files resized

Re: [PHP] Resizing Images Uploaded to Web Page

2003-03-08 Thread Liam Gibbs
> I have users uploading images to a server and need to have those files > resized on upload. I looked under filesystem, but found nothing like that. > Anyone? Check the GD extension. You'll need that installed, and the images can't be GIFs (must be JPEGs or TIFs, something like that). Anyway, the

RE: [PHP] resizing images comming out of blobs

2002-07-04 Thread Barajas, Arturo
> From: andy [mailto:[EMAIL PROTECTED]] > Hi there, Hey, Andy. > I am wondering how to resize an image which is stored in a > mysql blob field. > With files this workes just fine, but how to do this with the > image comming from blob? Has anybody done this already? Incidentally, I've done th

Re: [PHP] resizing images

2001-02-21 Thread Ron Wills
I have been using the tools from ImageMagick (convert) to create thumb nails of pictures upload to our site. Once you have the uploaded file just: if (exec('convert -w 100x100 ... src_file dest_file')) { error } I hope this helps. Dale Frohman wrote: > Does anyone know of a way to resiz