Jump to content

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

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.