[solved] Dithering from 48bit (to 24bit) image not possible?
Posted: 2020-11-08T10:45:37-07:00
I'm certain it is, because I've done it from 16-bit greyscale to 8-bit greyscale here:-
http://www.imagemagick.org/discourse-se ... 5dc9c07e6f
(using "Version: ImageMagick 7.0.7-28 Q16 x64 2018-03-25")
Any help with this BAT file would be appreciated. Either it just doesn't work, or I'm doing something obviously stupid?
http://www.imagemagick.org/discourse-se ... 5dc9c07e6f
Code: Select all
magick image24.png -depth 16 -define png:format=png48 -define png:compression-level=1 -define png:compression-filter=1 -define png:compression-strategy=2 png48:image48.png
magick image48.png -depth 16 -define png:format=png48 -define png:compression-level=1 -define png:compression-filter=1 -define png:compression-strategy=2 -blur 2x6 -blur 3x9 -depth 16 png48:image48b.png
magick image48b.png -depth 16 -define png:format=png48 -define png:compression-level=1 -define png:compression-filter=1 -define png:compression-strategy=2 -motion-blur 99x99+0 -depth 16 png48:image48b_.png
magick image48b_.png -depth 8 -define png:format=png48 -define png:compression-level=1 -define png:compression-filter=1 -define png:compression-strategy=2 -dither Riemersma -colors 16777215 png24:image48z.png
Any help with this BAT file would be appreciated. Either it just doesn't work, or I'm doing something obviously stupid?