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

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)
 
S

Steve DuMosch [MSFT]

use the system.drawing.bitmap object:

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

Herfried K. Wagner [MVP]

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top