Convert multipage Tiff to jpeg in .Net1.1

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

+1


source to share


1 answer


See here for an example of this.



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

+1


source







All Articles