How can i extract image from JPEG-compressed TIFF file ?
I've read bytes according to StripOffests and StripBytesCount fields, but i couldn't load an image from them.
|
|
Old style TIFF-JPEG (compression type 6) basically stuffed a normal JFIF file inside of a TIFF wrapper. The newer style TIFF-JPEG (compression type 7) allows the JPEG table data (Huffman, quantization), to be stored in a separate tag (0x015B JPEGTables). This allows you to put strips of JPEG data with SOI/EOI markers in the file without having to repeat the Huffman and Quantization tables. This is probably what you're seeing with your file. The individual strips begin with the sequence FFD8, but are missing the Huffman and quantization tables. This is the way that Photoshop products usually write the files. |
|||||||||||
|
|
The problem with the mentioned library libtiff is that it does extract the image and then saves it recompressed which means another quality loss in case of jpg. That said I can accomplish the same without even using a 3rd party lib by just calling GDI+ methods of NET Framework. The initial author of this thread tries to get the jpeg binary without having to recompress it and that is exactly what I am trying to do as well. This is a possible solution if you can live with quality loss and do not want to use anythin but .NET library classes:
the used helper method:
Reading the compression flag:
|
|||
|
|
If you are trying to extract the actual image from a TIFF, JPEG or otherwise, you are best off using a library such as libtiff in order to do so. TIFF is a very complicated spec and while you might be able to do this yourself and get one or two classes of images, chances are you wouldn't be able to handle the other cases that arise frequently, especially "old-style" JPEG which is a sub-format that was foisted upon TIFF and doesn't fit well into the overall. My company, Atalasoft, makes a .NET product that includes a very good codec for TIFF. If you only need to worry about single page images, our free product will work just fine for you. In the .NET realm, you could also look at Bit Miracle's managed version of libtiff. It is a pretty decent port of the library. |
|||||
|
|
Using JAI:
Great solution , helped me a lot .
Just to add , if you have multiple pages in TIFF you have to repeat reading the stream with defining a different directory number in
|
||||
|
|