Re: [PHP] Image Resizing in PHP

2001-03-30 Thread Felix Kronlage
On Fri, Mar 30, 2001 at 11:49:45AM +0200, Christian Reiniger wrote: > Well, people sometimes get upset when it takes five minutes to load a > page with, say, only 30 tiny thumbnails... Image-Resizing withing php is explained pretty well at the php.net-Site. Yust take a look at the manual for th

Re: [PHP] Image Resizing in PHP

2001-03-30 Thread Christian Reiniger
On Friday 30 March 2001 02:46, you wrote: > Perhaps i'm not following what you're trying to do, but why not > manipulate the height/width img tag attributes to make it look like a > thumbnail, but then when displaying it for real, take them out? there Well, people sometimes get upset when it take

Re: [PHP] Image Resizing in PHP

2001-03-30 Thread Patrick Dunford
On 29 Mar 2001 16:33:48 -0800 AD in php.general, YoBro said: >Hello, > >Is it possible to have PHP resize an image on the server? > >Example. >If I upload a JPG file at about 40KB at 600x480 Resolution, but I only want >to display it as a small thumbnail. But if clicking the thumbnail it then >o

Re: [PHP] Image Resizing in PHP

2001-03-29 Thread Pablo
Where can I find a GD with GIF support (the new one only supports JPEG and PNG) Regards, Pablo ""YoBro"" <[EMAIL PROTECTED]> escribió en el mensaje 9a0k9b$hdp$[EMAIL PROTECTED]">news:9a0k9b$hdp$[EMAIL PROTECTED]... > Hello, > > Is it possible to have PHP resize an image on the server? > > Examp

RE: [PHP] Image Resizing in PHP

2001-03-29 Thread Scott Brown
:49 PM > To: 'Jack Dempsey'; YoBro > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] Image Resizing in PHP > > > > Perhaps i'm not following what you're trying to do, but why not > > manipulate the height/width img tag attributes to make it > lo

Re: [PHP] Image Resizing in PHP

2001-03-29 Thread Jack Dempsey
ok, so then read the image in using php's image functions, and use imagecopyresized...you'll even find a post about thumbnails... http://www.php.net/manual/en/function.imagecopyresized.php -jack Jason Murray wrote: > > > Perhaps i'm not following what you're trying to do, but why not > > manip

RE: [PHP] Image Resizing in PHP

2001-03-29 Thread Jason Murray
> Perhaps i'm not following what you're trying to do, but why not > manipulate the height/width img tag attributes to make it look like a > thumbnail, but then when displaying it for real, take them out? Because then you have to download the entire large image. Large images are bigger. :) Jaso

Re: [PHP] Image Resizing in PHP

2001-03-29 Thread Jack Dempsey
Perhaps i'm not following what you're trying to do, but why not manipulate the height/width img tag attributes to make it look like a thumbnail, but then when displaying it for real, take them out? there definitely have been posts about this (as usual, check the archives) and i'm sure a little sea