是否有一种简单的方法可以将TrueColor图像(在这种情况下为24位,位图)转换为1Bpp图像(调色板,转换为位图)。
我知道imagemagick转换可以进行转换,但出于某种原因,当我尝试捐赠时 convert -type Palette -depth 7 truecolor.bmp 1bpp.bmp
我知道你是以编程方式进行的,但不是更方便吗?
由于
答案 0 :(得分:3)
感谢大家的帮助和兴趣(最大的讽刺),但我找到了解决方案。
convert -colors 2 -depth 1 truecolor.bmp 1bpp.bmp
会做的伎俩
由于