RSS/Atom feed Twitter
Site is read-only, email is disabled

Standard text in picture.

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

Standard text in picture. Jimmi L. Hansen 28 Jul 16:27
  Standard text in picture. Tobias Jakobs 28 Jul 16:38
  Standard text in picture. Jay Smith 28 Jul 16:45
Jimmi L. Hansen
2010-07-28 16:27:13 UTC (over 14 years ago)

Standard text in picture.

Is it possible to make a standard text in every picture feks. "©Jimmi L. Hansen"? So i dont have to make it manual every time.

Sincerely jimmi

Tobias Jakobs
2010-07-28 16:38:50 UTC (over 14 years ago)

Standard text in picture.

I would use ImageMagic for that.

Regards, Tobias

On Wed, Jul 28, 2010 at 16:27, Jimmi L. Hansen wrote:

Is it possible to make a standard text in every picture feks. "©Jimmi L. Hansen"? So i dont have to make it manual every time.

Sincerely jimmi

Jay Smith
2010-07-28 16:45:03 UTC (over 14 years ago)

Standard text in picture.

On 07/28/2010 10:27 AM, Jimmi L. Hansen wrote:

Is it possible to make a standard text in every picture feks. "©Jimmi L. Hansen"? So i dont have to make it manual every time.

Sincerely jimmi

Jimmi,

In the past I have used ImageMagick for this, processing thousands of image files at a time (the largest run was on about 30,000 images).

http://www.imagemagick.org/script/index.php

3-4 years ago, this ImageMagick method had some bugs with size and position of the overprint/watermark, but I think that has all been fixed now.

More to the story... Normally you would not want to apply this overprint/watermark to original/source images. And, if you apply it to already existing "distribution" images (such as JPEGs) you degrade the quality of the existing JPEG. So what we were doing in ImageMagick was:

For each source/TIFF image

open TIFF image apply watermark/overprint
SaveAs image in a different directory AS JPEG (with desired "quality" level) close TIFF image without saving

Thus the original/source is not contaminated.

Frankly, even this approach is not completely safe in my opinion because the manipulation of the open TIFF image creates a risk in case your hardware develops memory problems, etc. [We had physical memory go bad in the middle of processing and destroyed several thousand images -- fortunately we had backups.] Thus, if I were designing the workflow, I would rsync/copy the source images to a temporary directory, create the JPEGs and then discard the copies.

Jay