Jump to content

[SOLVED] GD 1500 images to process


Jin597

Recommended Posts

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!

Link to comment
https://forums.phpfreaks.com/topic/52590-solved-gd-1500-images-to-process/
Share on other sites

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.