ryanh_106 Posted April 5, 2006 Share Posted April 5, 2006 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?ThanksRyan Quote Link to comment https://forums.phpfreaks.com/topic/6660-php-and-gd-images/ Share on other sites More sharing options...
Akira Posted April 6, 2006 Share Posted April 6, 2006 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] Quote Link to comment https://forums.phpfreaks.com/topic/6660-php-and-gd-images/#findComment-24402 Share on other sites More sharing options...
ryanh_106 Posted April 11, 2006 Author Share Posted April 11, 2006 Thanks for the idea, How would you go about saving the image to the server once you had resized it, I only know how to ouput it to the browser Quote Link to comment https://forums.phpfreaks.com/topic/6660-php-and-gd-images/#findComment-25781 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.