Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a simple command-line tool (on Linux) to insert a text chunk (e.g. copyright) into a png file, resulting in a new png file:

> png-insert-text-chunk "here's my text chunk" < in.png > out.png

Note: by "insert a text chunk", I do not mean "draw some text on the image". I mean: insert the text into the png file as a chunk, in the technical sense. This can be used, for example, to insert a copyright message that isn't displayed on the actual image.

share|improve this question
Next time try submitting similar questions to unix.stackexchange.com, as this isn't programming related. – Mr. Shickadance Jan 27 '12 at 16:14
@mr I'm not seeing how this question is less programming-related than, say, this one or this one. What if I wanted to write a CGI script in bash that inserts text chunks into a collection of images, and for that I'd need the command above? Sounds like a program to me. – gcbenison Jan 28 '12 at 1:17
He specifically asked for a command-line tool on Linux. I just figured I'd point out that unix.stackexchange.com exists. – Mr. Shickadance Jan 28 '12 at 16:52
Using php (command line): stackoverflow.com/questions/8842387/… – leonbloy Jan 30 '12 at 13:46
@leonbloy Cool, it works... I may continue looking for a more lightweight solution that does not require starting a php process – gcbenison Jan 30 '12 at 17:18

6 Answers

up vote 3 down vote accepted

I have searched around for utilities to do this, and not yet found anything that really matches what I want to do. So I decided to build my own, which it turns out is not too hard. The utility png-text-dump displays all text chunks in a PNG image. It depends only on libpng. The utility png-text-append inserts text chunks into a PNG image. It depends only on the standard C library - I had initially tried to implement this using libpng, but actually found it easier to work from scratch using only the PNG specification.

share|improve this answer
Thanks for doing that work! I am trying to embed my own metadata into PNGs and saw that tEXt chuncks were the way to do it but I didn't see any tools that supported it. I will be using your utility! – stephenmm Mar 31 at 2:21

I believe that pngcrush has this ability: http://pwet.fr/man/linux/commandes/pngcrush

share|improve this answer
I looked into pngcrush a bit, and it can do this; my only issue is that I can't seem to get it to leave the other chunks alone. Also I haven't been able to get it to simply print out the content of the text chunks existing in a png file. – gcbenison Mar 27 '12 at 15:12

convert will maybe do the job.

share|improve this answer
convert -draw "text 20,20 'hello, world'" input.png output.png

The 20,20 in the above example is the co-ordinate where I want to place the text.

You need to use the imagemagick package to get this command.

On Ubuntu or Debian, it can be installed with the command: aptitude install imagemagick.

Here is a slightly more elaborate usage of the command:

convert -font Helvetica -pointsize 20 -draw "text 20,20 'hello, world'" Hypercube.png output.png
share|improve this answer
1  
I'm looking for a command to insert a png "text chunk", i.e. embedded comments in the file. But this is a cool way to draw text on an image; I didn't know convert could do that. – gcbenison Jan 28 '12 at 14:27

Have you tried ?

share|improve this answer
convert is part of imagemagick – Bruce_Warrior Jul 25 '12 at 20:05

Adding to the comment made by @susam-pal, to change color use the option

-fill color

This option accepts a color name, a hex color, or a numerical RGB, RGBA, HSL, HSLA, CMYK, or CMYKA specification. See Color Names for a description of how to properly specify the color argument.

Enclose the color specification in quotation marks to prevent the "#" or the parentheses from being interpreted by your shell. For example,

-fill blue

-fill "#ddddff"

-fill "rgb(255,255,255)"


Obtained from link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.