in reply to Overlaying text in existing image (jpg) file

Image::Magick has that capability, if you can coax it to do what you want, given that it's underdocumented and has a difficult API, and it's often hard to install correctly.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: Overlaying text in existing image (jpg) file

Replies are listed 'Best First'.
Re^2: Overlaying text in existing image (jpg) file
by ikegami (Patriarch) on Oct 19, 2004 at 19:34 UTC
    The documentation is found here
      The documentation is found here
      Heh. That's sort of a sketch of the docs. That's not the real docs. The real docs do not exist. Most of the time, I end up starting from one of the tests in the Perl module distro, and then slowly mutating it to make sure it still works and is still doing what I want it to do.

      On a recent 15-line script (to grab the the timestamps from the EXIF data), I ended up having to stare at the C sources for about an hour, and just "try" things repeatedly. I'm no dummy, and it took me that long. Gah.

      I'm not sure what it is about image-manipulation software that makes them all: (a) fragile, (b) underdocumented, and (c) hard to install. It's very consistent.

      -- Randal L. Schwartz, Perl hacker
      Be sure to read my standard disclaimer if this is a reply.

        I'm not sure what it is about image-manipulation software that makes them all: (a) fragile, (b) underdocumented, and (c) hard to install. It's very consistent.

        I've noticed--and been saddened--by that. What packages in what languages adress this well? Are there any? Perhaps if there's a good enough model, a Perl emulation/recreation could be done like it.