I am using
Code: Select all
magick -version
Version: ImageMagick 7.0.7-25 Q16 x86 2018-03-04 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Visual C++: 180040629
Features: Cipher DPC HDRI
Delegates (built-in): bzlib cairo flif freetype gslib heic jng jp2 jpeg lcms lqr openexr pangocairo png ps raw rsvg tiff webp xml zlib
My idea is as follows
Given :- I have an image that is 500x50 wide with a number in each 100x100 block starting from the corner.
Code: Select all
magick -background white -fill black -font "Comic-Sans-MS-Bold" -size 40x40 caption:1 caption:2 caption:3 caption:4 caption:5 caption:6 caption:7 caption:8 caption:9 caption:10 miff:- |magick montage - -tile 10x -geometry +5+5 one-to-ten.png
If you consider one-to-ten.png and scrolling is left to right then 10 will appears first followed by nine,eight,.. upto one.
How can I accomplish this ?
Thanks.