I want to convert tif to an image type that is viewable in a web page.
The tifs are black and white so jpg does not work well at all and end up even larger.
Here are some tests I have made so far using C# and Image.Save to do the conversion:
Orignal tif is 7KB (bit depth: 1).
Converted to:
- JPG: 101KB (bit depth: 24)
- BMP: 256KB (bit depth: 1)
- GIF: 17KB (bit depth: 8)
- PNG: 11KB (bit depth: 1)
I think did a multipage tif which has 3 pages. Original size was 134KB (bit depth: 1).
Converted 3 images totals:
- JPG: 1324KB (bit depth: 24)
- BMP: 768KB (bit depth: 1)
- GIF: 221KB (bit depth: 8)
- PNG: 155KB (bit depth: 1)
I am starting with a multipage tif so I need to convert it for the web. It looks like PNG would be the best format to use base on my basic tests outlined above. Is there another image format that I should be using?
Are the any other options I am missing to get the file size down?
EDIT: I haved added more information regarding the bit depth of each information. The BMP and PNG maintain the same bit depth as the TIF. Is there a way to reduce the GIF or JPG bit depth to hopefully reduce the size significantly?