How to convert a bitmap into a 1bpp monochrome TIFF in C#

If you want to convert a bitmap into a TIFF, than then you can use the code: using (System.Drawing.Bitmap sourceBitmap = new System.Drawing.Bitmap(@"C:\Temp\Source.bmp")) { string outputFileName = @"C:\Temp\Destination.tiff"; if (System.IO.File.Exists(outputFileName)) { System.IO.File.Delete(outputFileName); } sourceBitmap.Save(outputFileName, System.Drawing.Imaging.ImageFormat.Tiff);