How can I convert a .tiff to a .bmp fast?

  • Thread starter Thread starter Trint Smith
  • Start date Start date
T

Trint Smith

I need to write a vb.net program that converts .tiffs to .bmps.
any help is appreciated.
thanks,
Trint

..Net programmer
(e-mail address removed)
 
use the system.drawing.bitmap object:

Dim x As New Bitmap("c:\test.tiff")
x.Save("c:\test.bmp", System.Drawing.Imaging.ImageFormat.Bmp)
 
Hello,

Steve DuMosch said:
use the system.drawing.bitmap object:

Dim x As New Bitmap("c:\test.tiff")
x.Save("c:\test.bmp", System.Drawing.Imaging.ImageFormat.Bmp)

This will only work with a sigle page TIFF, or am I missing something?
 
Back
Top