I have a TIFF file in memory, which I obtained by a variant of the following code:

Image myImage = Image.FromFile("somefile.tiff");

Currently, myImage.Palette only returns two colors, black and white. I would like to expand this to include the entire color spectrum. However, myImage.Palette does not have a function to add additional colors.

Can someone help give my TIFFs some color? Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can try to use the Clone method to clone the bitmap to Format8bppIndexed

link|improve this answer
Wow, it works! Thanks! – James Jones Oct 7 '09 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.