Jump to content

PHP and GD images


ryanh_106

Recommended Posts

Hi, I am not a newbie to PHP but am to GD it is my first time trying it today.

Prob a simple questions...

I have created a script to scale and resize my images for a gallery I am making, only prob is that the main gallery screen takes a while to load (crap server) so I was wondering if I could make the script save a copy of the thumbnail to use next time (if one isnt already available).

I have got to this line to create the image (with a lot more above obviously)
imagejpeg($new_image, '', 100);
So is it possible to save this to a file on the server?

Thanks

Ryan
Link to comment
Share on other sites

To save server time, always try to cache the images.

What i do, is when i upload an image, it resizes and stores the image on the server directly.

The standaard PHP function move_uploaded_file(); will do the trick.
For examples on how tu use, please visit [a href=\"http://nl3.php.net/move_uploaded_file\" target=\"_blank\"]http://nl3.php.net/move_uploaded_file[/a]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.