Re: [PHP] Resizing an image

2011-03-29 Thread tedd
At 3:21 AM +0300 3/29/11, Andre Polykanine wrote: Hi everyone, Image processing is a part of Php language completely unknown to me :-(. So there is my task: I need to process an uploaded image. We allow uploading of gif, jpeg, and png images. If an image is wider than 600px, it should

Re: [PHP] Resizing an image

2011-03-28 Thread Donovan Brooke
Andre Polykanine wrote: Hi everyone, Image processing is a part of Php language completely unknown to me :-(. So there is my task: I need to process an uploaded image. We allow uploading of gif, jpeg, and png images. If an image is wider than 600px, it should be proportionally resized

[PHP] Resizing an image

2011-03-28 Thread Andre Polykanine
Hi everyone, Image processing is a part of Php language completely unknown to me :-(. So there is my task: I need to process an uploaded image. We allow uploading of gif, jpeg, and png images. If an image is wider than 600px, it should be proportionally resized to the width of 600px. Ye

Re: [PHP] resizing an image

2002-08-29 Thread ROBERT MCPEAK
Sheesh, I will. Thanks. >>> Robert Cummings <[EMAIL PROTECTED]> 08/29/02 09:47AM >>> ROBERT MCPEAK wrote: > > Could someone show me some php that proportionally resizes an image? > I'm collecting user sumbitted images and need them all to be within > certain size constraints. What's the simple

RE: [PHP] resizing an image

2002-08-29 Thread Liam . Gibbs
> Could someone show me some php that proportionally resizes an image? > I'm collecting user sumbitted images and need them all to be within > certain size constraints. What's the simplest, best way to do this? Try out www.php.net/imagecopyresized or http://www.php.net/manual/en/ref.image.php if

Re: [PHP] resizing an image

2002-08-29 Thread Robert Cummings
ROBERT MCPEAK wrote: > > Could someone show me some php that proportionally resizes an image? > I'm collecting user sumbitted images and need them all to be within > certain size constraints. What's the simplest, best way to do this? > > Sample code would be a huge help, as I'm a newbie and hav

[PHP] resizing an image

2002-08-29 Thread ROBERT MCPEAK
Could someone show me some php that proportionally resizes an image? I'm collecting user sumbitted images and need them all to be within certain size constraints. What's the simplest, best way to do this? Sample code would be a huge help, as I'm a newbie and have not done anything with PHP imag