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
iMagick offers all of the functionality of imageMagick, which is a
substantially different subset than GD. iMagick is primarily geared
toward modifying existing images. Resizing, converting formats, apply
effects to, etc. It also works with a far larger set of base image
formats.
Check out
> 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.
How is PEAR making out? What makes it better than using the GD extension? I
will need to do image manipulation (much like the original que
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
> 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
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?
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
idth . "x" . $newHeight .
" $image_tmpfilename $image_filename");
}
else
copy($image_tmpfilename, $image_filename);
unlink($image_tmpfilename);
}
else
$image_filename = "images/sinlogo.jpg";
Hope that helps.
--
Un gr
Hi there,
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?
Thank you for any help on that,
andy
--
PHP General Mailing List (http://www.php.net/
BTW, could anybody share its experience in writing scripts that can
resize images? And what extensions should be installed on server 4
such operationz.
Thanx.
--- Hit any user to continue. --- :)
Ivan 'Faeton aka xetrix' Danishevsky
ICQ(240266) [
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
Does anyone know of a way to resize images as they are being uploaded?
Would you write these images to a mysql database or straight to a file on
the server? The pictures will be small < 100k
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
F
11 matches
Mail list logo