hactched line image

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?".
Post Reply
xpt
Posts: 59
Joined: 2010-10-06T20:18:24-07:00
Authentication code: 8675308

hactched line image

Post by xpt »

Hi,

In order to test my blurring result, I need to come up with a image full with "#' like hatched lines.

What's the easiest way to do that?

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: hactched line image

Post by fmw42 »

do you mean a rows and rows of "#" symbols

see http://www.imagemagick.org/script/forma ... n-patterns will any of those do? If not, then use one of the text to image methods (label: or caption or draw or annotate) to make a small grid of them and then tile it out to the size you need.

see

http://www.imagemagick.org/Usage/text/
http://www.imagemagick.org/Usage/canvas/#tile
xpt
Posts: 59
Joined: 2010-10-06T20:18:24-07:00
Authentication code: 8675308

Re: hactched line image

Post by xpt »

fmw42 wrote:see http://www.imagemagick.org/script/forma ... n-patterns will any of those do?
Yep. Thanks

Code: Select all

convert -size 400x300 pattern:CROSSHATCH crosshatch.gif
Post Reply