Hi,
for archiving documents (.tiff scans) in a document management system I would like to “normalize” them prior to uploading to have only 8bpp rgb palette. This is also to save some space.
I just cannot get this to work.
Currently I’m using something like this:
var outputSettings = new TiffOptions();
outputSettings.BitsPerSample = new ushort[]{ 4 };
outputSettings.ImageDescription += " (processed)";
outputSettings.Photometric = TiffPhotometrics.MinIsWhite;
outputSettings.Compression = TiffCompressions.Lzw;
This is of course something else entirely. But for some reason I just cannot figure out the correct settings for 8bit color images.
Any hints?
Best regards,
Steviee