Is there an easy way to take a TrueColor Image (24 Bit, Bitmap in this case) to a 1Bpp Image (Palette, Convert to Bitmap).
I know of imagemagick convert which can do conversion, but for some reason when I tried doning
convert -type Palette -depth 7 truecolor.bmp 1bpp.bmp
I know that you do it programatically, but isnt there an easier way?
Thanks
Thanks Everyone for you help and interest (sarcasm to the max) but I found a solution.
will do the trick
Thanks