Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
ghostmansd
Posts: 24 Joined: 2011-03-21T09:27:47-07:00
Authentication code: 8675308
Post
by ghostmansd » 2011-04-25T11:34:21-07:00
I know that it is possible to make a bitonal picture from text. For example, to make pbm file with letter "J" you have to enter something like that:
Code: Select all
P1
# This is an example bit map file j.pbm
6 10
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
1 0 0 0 1 0
0 1 1 1 0 0
0 0 0 0 0 0
0 0 0 0 0 0
I want to make this picture don't having a copy of it. Here is
link to picture. Can I make exact copy of this.
ghostmansd
Posts: 24 Joined: 2011-03-21T09:27:47-07:00
Authentication code: 8675308
Post
by ghostmansd » 2011-04-25T11:39:34-07:00
Thank to everyone, question is solved. You have to use pnmtoplainpnm .