tiff compression
How do I specify which compression I want to use for saving images? My code so far is:
//System.Drawing.Image img = some code for creating image object
img.Save(path, System.Drawing.Imaging.ImageFormat.Tiff);
The problem is that when I save the image object like this, it doesn't show in some piture editors.... The file opens, but the error is: Decompression library not available.
How do I solve this? And, yes, I HAVE TO save files in tiff format, and I cannot use jpeg or gif formats.
|