Ask a Question related to PHP Development, Design and Development.
-
Bob Bedford #1
Resize uploaded image
I want to resize the images that the user may upload on our server.
What I want is to resize the width and the height.
How to do so ?
Bob Bedford Guest
-
Resize Bitmap image in image control in flex3
I am loading an image in image control initially. Then I am applying color transform to that image and want to load that bitmap image in flex3. That... -
Limiting uploaded image width in user-posted content?
I have created a blogging system where users can upload pics to their galleries then place them into their blogs by way of <img> tags. The problem... -
Resize image on the fly
Does anybody know any custom tag or snippet that can resize image on the fly based on the user's selection, ie thumbnail 300x400 600x800 ... -
Maintain an uploaded Image in a Session
Hi: I have a ASP.NET form with Web layout which I've achieved using panels. In one of the tab I have a File control to upload Images. When I put... -
Image Resize does not work
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors.... -
CountScubula #2
Re: Resize uploaded image
"Bob Bedford" <bedford1@YouKnowWhatToDohotmail.com> wrote in message
news:40056409$0$724$5402220f@news.sunrise.ch...Two simple ways> I want to resize the images that the user may upload on our server.
>
> What I want is to resize the width and the height.
>
> How to do so ?
>
>
user imagemagik or load the image, resize, save
since you are using a script to upload it, might was well resize it to:
$imSrc = imagecreatefromjpeg($fileName);
$imDst = imagecreate ( int x_size, int y_size);
imagecopyresized(...............)
imagejpeg ( $imgDst [, string filename [, int quality]]);
--
Mike Bradley
[url]http://www.gzentools.com[/url] -- free online php tools
CountScubula Guest



Reply With Quote

