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.