Re: [PHP] Re: Any good gif/jpg processing tool for PHP??

2001-08-07 Thread Girish Nath

Hi

I've used ImageMagick in the past(it runs on NT and Linux), I found it gives
higher quality results than the builtin functions especially when resizing
jpegs.

http://www.imagemagick.org


Girish


- Original Message -
From: Gaylen Fraley [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 07, 2001 4:43 AM
Subject: [PHP] Re: Any good gif/jpg processing tool for PHP??


PHP does exactly that.  Look in the manual for the Image functions.

--

Diego Fulgueira Pastor [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am sure many of you have had this same problem. I want all uploaded
images
 to my site (gifs and jpg)  to be resized on the fly so that all have the
 same width and height. Does anyone knows about a tool (free, if possible)
 that can do this under Win2k, IIS 5.0 and that can be used with PHP 4.0?
A
 php extension (dll) would be great. If it works only for one format (gif
or
 jpg) is fine.
 Thanks in advance for any tip.

 Cheers, Diego.





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Any good gif/jpg processing tool for PHP??

2001-08-07 Thread Jon Yaggie

how do you feel about the speed of imagemagick?  fastwr? slower than gd
functions?


- Original Message -
From: Girish Nath [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 07, 2001 1:56 PM
Subject: Re: [PHP] Re: Any good gif/jpg processing tool for PHP??


 Hi

 I've used ImageMagick in the past(it runs on NT and Linux), I found it
gives
 higher quality results than the builtin functions especially when resizing
 jpegs.

 http://www.imagemagick.org


 Girish


 - Original Message -
 From: Gaylen Fraley [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 07, 2001 4:43 AM
 Subject: [PHP] Re: Any good gif/jpg processing tool for PHP??


 PHP does exactly that.  Look in the manual for the Image functions.

 --

 Diego Fulgueira Pastor [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  I am sure many of you have had this same problem. I want all uploaded
 images
  to my site (gifs and jpg)  to be resized on the fly so that all have
the
  same width and height. Does anyone knows about a tool (free, if
possible)
  that can do this under Win2k, IIS 5.0 and that can be used with PHP 4.0?
 A
  php extension (dll) would be great. If it works only for one format (gif
 or
  jpg) is fine.
  Thanks in advance for any tip.
 
  Cheers, Diego.
 
 



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Any good gif/jpg processing tool for PHP??

2001-08-07 Thread Girish Nath

Hi

I've used ImageMagick to resize images from 1152*768 pixels down to 640*480
pixels. It runs very quickly, you can also try it from the command line to
see what you think of the performance. Also, it comes with some support
programs that allow filters such as gamma correction etc. It seems to
anti-alias images better than GD when resizing too.

It's cool :)


Girish

- Original Message -
From: Jon Yaggie [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 07, 2001 8:03 AM
Subject: Re: [PHP] Re: Any good gif/jpg processing tool for PHP??


how do you feel about the speed of imagemagick?  fastwr? slower than gd
functions?


- Original Message -
From: Girish Nath [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 07, 2001 1:56 PM
Subject: Re: [PHP] Re: Any good gif/jpg processing tool for PHP??


 Hi

 I've used ImageMagick in the past(it runs on NT and Linux), I found it
gives
 higher quality results than the builtin functions especially when resizing
 jpegs.

 http://www.imagemagick.org


 Girish


 - Original Message -
 From: Gaylen Fraley [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 07, 2001 4:43 AM
 Subject: [PHP] Re: Any good gif/jpg processing tool for PHP??


 PHP does exactly that.  Look in the manual for the Image functions.

 --

 Diego Fulgueira Pastor [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  I am sure many of you have had this same problem. I want all uploaded
 images
  to my site (gifs and jpg)  to be resized on the fly so that all have
the
  same width and height. Does anyone knows about a tool (free, if
possible)
  that can do this under Win2k, IIS 5.0 and that can be used with PHP 4.0?
 A
  php extension (dll) would be great. If it works only for one format (gif
 or
  jpg) is fine.
  Thanks in advance for any tip.
 
  Cheers, Diego.
 
 



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: Any good gif/jpg processing tool for PHP??

2001-08-06 Thread Gaylen Fraley

PHP does exactly that.  Look in the manual for the Image functions.

--

Diego Fulgueira Pastor [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am sure many of you have had this same problem. I want all uploaded
images
 to my site (gifs and jpg)  to be resized on the fly so that all have the
 same width and height. Does anyone knows about a tool (free, if possible)
 that can do this under Win2k, IIS 5.0 and that can be used with PHP 4.0?
A
 php extension (dll) would be great. If it works only for one format (gif
or
 jpg) is fine.
 Thanks in advance for any tip.

 Cheers, Diego.





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]