Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert tiff to jpeg 1

Status
Not open for further replies.

daveonion

Programmer
Aug 21, 2002
359
GB
Hi does anybody know of a way to convert tiff files to jpeg's or bitmaps using vb.net, i cant find any information to do it
thanks
 
it's easy

you just open it as an image and then save it.

Code:
Dim i As System.Drawing.Image = system.Drawing.Image.FromFile("...")
i.Save("...", System.Drawing.Imaging.ImageFormat.Jpeg)

and voila.

Christiaan Baes
Belgium

"My new site" - Me
 
Haha, thanks

I thought of that just after i asked the question,

thanks again i'll give u a star for my sillyness
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top