Toner on paper

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
emery

Toner on paper

Post by emery »

Can anyone give me some ideas on how I might be able to create the look of a solid rectangle of black toner printed on paper? Or in other words a photocopy effect.

Here's an example: http://thumbs.dreamstime.com/thumb_106/ ... tnS5hm.jpg
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Toner on paper

Post by fmw42 »

Not a very good approximation, but try

convert -size 1x300 gradient: -solarize 50% -level 0x50% -dither Riemersma -colors 8 -scale 300x300! -auto-level tmp3.png

You could try mixing a column of random numbers to the 1D image before the -scale 300x300!. That might add some more randomness to the result.
dcboo

Re: Toner on paper

Post by dcboo »

Post Reply