How to convert tiff to bmp using c++

Apr 12, 2013 at 4:25pm
Hi,

Can you please me to convert tiff image to BMP image format.

If you share any sample code it will be very helpful.

Thanks
Apr 19, 2013 at 6:07am
Here is an example for converting single-page TIFF files to bmp format using this method.
Imports System.IO
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing
Imports RasterEdge.Imaging.MultipageTiff

Dim TIFF As New RasterEdgeImaging()

Public Sub TiffConvertToBmp()
If True Then
TIFFInputFile = ("C:/1.tif")
ImageOutputFile = ImageFormat.bmp
End If
End Sub
TIFF.Save(@"C:/1.tif", 1, @"C:/1.bmp")

Convert Multi-Page TIFF to BMP Method on http://www.rasteredge.com/how-to/vb-net-imaging/tiff-convert-bmp/
Topic archived. No new replies allowed.