.NET Multipage Tiff with Lossy Compression

Posted by Adam Berent on Stack Overflow See other posts from Stack Overflow or by Adam Berent
Published on 2010-05-31T20:52:25Z Indexed on 2010/05/31 21:03 UTC
Read the original article Hit count: 222

Filed under:
|
|
|
|

I need a way to take several jpgs and convert them into a single multi page Tiff. I have that working using GDI+ however it only works with the compression LZW which is lossless. This means that my 3 50KB Jpgs turn into 3MB multipage Tiff file. This is not something I can accept for the software that I am working on.

I know that Tiff Image format can use a JPG compression scheme but GDI+ does not seem to support this.

If anyone knows how to do this in .NET (C#) or of any component that does this conversion.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET