Jin597 Posted May 23, 2007 Share Posted May 23, 2007 I have 1 image that I need to write out 1500 times (each with a unique piece of text). using GD to write text to the image (with the unique text) is not really a problem. The problem I am facing is how to write out the resulting image to a new image file rather than just displaying the image. so: // FOR X = 1 to 1500 // READ IN IMAGE // ADD TEXT TO IMAGE // WRITE OUT NEW IMAGE Can someone shed some light on this? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/52590-solved-gd-1500-images-to-process/ Share on other sites More sharing options...
AndyB Posted May 23, 2007 Share Posted May 23, 2007 Here's the relevant chunk of code from a script I wrote to generate 1000s of captchas. It should give you some pointers. $dest_img = $image_folder. $name. ".jpg"; // path and name for image to be saved imagejpeg($im,$dest_img,90); // copy image to the destination folder imagedestroy($dest_img); // release server memory Quote Link to comment https://forums.phpfreaks.com/topic/52590-solved-gd-1500-images-to-process/#findComment-259536 Share on other sites More sharing options...
Jin597 Posted May 23, 2007 Author Share Posted May 23, 2007 Thanks andy! Quote Link to comment https://forums.phpfreaks.com/topic/52590-solved-gd-1500-images-to-process/#findComment-259538 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.