Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
However, this gives me a colormap where 0 => black and 1 => white. The printer, stupidly, ignores the palette in the file and assumes 1 is black. Is there any way to either invert the colormap in the 1bpp file, or explicitly define the colormap during conversion from 8bpp to 1bpp?
Negate actually inverts the colormap as well as the pixels - so the print out doesn't change, unfortunately. I want to switch just the pixels OR just the colormap, not both.
toggle the photometric interpretation (Added IM 6.3.2-10)
-define quantum:polarity=min-is-black
-define quantum:polarity=min-is-white
Also note that proper IM 6 syntax generally has the input image right after convert, except for things like controls for vector to raster format, such a colorspace and density. see http://www.imagemagick.org/Usage/basics/#why