ImageMagick convert scan: Difference between revisions
From WickyWiki
mNo edit summary |
mNo edit summary |
||
| Line 28: | Line 28: | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
#divide picture into quarters with a 4 pixel overlap | #divide picture into quarters with a 4 pixel overlap | ||
convert '*.jpg | convert '*.jpg' -crop 2x2+4+4@ +repage +adjoin 'picture_part_%d.jpg' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
= Also see = | = Also see = | ||
* [[ImageMagick tools]] | * [[ImageMagick tools]] | ||
Revision as of 19:07, 3 April 2017
Text document resize and quality
After scanning a document you may want to resize and compress the resulting image. You should scan with a higher resolution so you can have a better-quality lower resolution.
convert '*.jpg' -set filename:f '%t(resized).%e' -resize 1500x -quality 85 '%[filename:f]'
Text document white threshold
The white paper background will probably not end up being white so we add a 'white-threshold'. A lower value will mean more light areas are converted to pure white.
convert '*.jpg' -set filename:f '%t(resized).%e' -white-threshold 92% -resize 1500x -quality 80 '%[filename:f]'
White threshold
The white paper background will probably not end up being white so we add a 'white-threshold'. A lower value will mean more light areas are converted to pure white.
convert '*.jpg' -set filename:f '%t(resized).%e' -white-threshold 92% -resize 1500x -quality 80 '%[filename:f]'
Split up picture
When you scan all your old photos, four at a time, you can use this to divide them up in quarters.
#divide picture into quarters with a 4 pixel overlap convert '*.jpg' -crop 2x2+4+4@ +repage +adjoin 'picture_part_%d.jpg'