imagemagickでテスト用の適当な画像をつくる
convert -depth 8 -size 100x100 xc: +noise Random png:- | convert - -sample 1000% out.png https://t.co/AVfo7BZJqt pic.twitter.com/5i7AKoWicQ
— 久我山菜々+ (@nonamea774) June 12, 2018
magick
magick -depth 8 -size 10x10 xc: +noise Random -sample 10000% out.png
とかするとコマンド一発かつ7対応でいけそう。
magick
magick -depth 8 -size 10x10 xc: +noise Random -sample 10000% -pointsize 60 -annotate +0+100 "`LANG=C date`" out.png
ランダムだと区別がムズいからdateを入れる(そもそもdateだけでいい可能性はある)。
#ImageMagick #convert