views:

1394

answers:

1

Is there a way to convert a multi page Tiff file to a jpeg file in VB.net 1.1. I've tried to convert it with the standard Bitmap.Save() method but it only converts the first page.

A: 

See here for an example of this.

Basically you have to load the TIFF and paint the pages to new bitmaps in memory.

Rune Grimstad