I'm looking for a library that can open and copy sections of a large TIFF file. I've looked at LibTiff.Net which opens the file very quickly but it doesn't have any functions for cropping or copying sections of the image. My image is 100,000 x 100,000 pixels upwards and creating a System.Drawing.Bitmap of that size crashes the application so converting to a Bitmap first is not an option.

Can anyone recommend a .NET library?

link|improve this question

57% accept rate
Oh Lord, that's 40 gigabytes. I supposed you only have a 32-bit operating system to make it extra challenging? – Hans Passant Jan 25 at 14:35
I'm running on 64-bit hardware but reading from the disk is going to be the ideal way of processing it. I'm looking deeper into LibTiff.Net which has functions to read scanline which may be what I need – JWood Jan 25 at 14:41
Is the image color, grayscale or bilevel? For bilevel I have a native code solution that can solve the memory problem. Email me (bitbank@pobox.com). – BitBank Jan 25 at 14:43
If you can preconvert it to PNG, this could help: code.google.com/p/pngcs – leonbloy Jan 25 at 14:46
How hard would it be to extend the LibTiff.net code? Seems like most of the work has been done there. – RQDQ Jan 25 at 16:27
show 1 more comment
feedback

5 Answers

up vote 4 down vote accepted

If your file is less than 4GB on disk than I recommend you to take another look at LibTiff.Net. Even with such large images you have some options.

First of all, check whether your image is tiled or stripped. Tiff.IsTiled method will give you the answer.

If your image is tiled, than you probably shouldn't read it using ReadScanline method. It might be better to use ReadEncodedTile method in that case.

If your images is stripped, than you can use ReadScanline and ReadEncodedStrip methods to read it.

If you want to use something that expects System.Drawing.Bitmap than try using ReadRGBATile or ReadRGBAStrip. These methods can be used to create bitmaps from portions of your image. There is no sample for this, but Convert color TIFF to a 32-bit System.Drawing.Bitmap should give you almost all required information about how to convert tile or strip of an image to a bitmap.

link|improve this answer
I've got a tiled image that is JPG compressed. I want to access the image and write it back out. Do I read with ReadEncodedTile and write with WriteTile or WriteEncodedTile? – Krip Feb 17 at 14:28
I got it working with ReadEncodedTile followed by WriteEncodedTile. – Krip Feb 22 at 15:11
feedback

Your image must be in BigTIFF format, since normal TIFF can't be larger than 4 GB.

BigTIFF can be read with a modified version of libtiff (available in BigTIFF website), this library allows to handle such images the way you want without loading all pixel data in memory.

I didn't see bindings for .NET but it shouldn't be too long to do it.

link|improve this answer
feedback

Atalasoft dotImage has this ability built-in to the TIFF decoder. The decode implements the interface IRegionReadable, which lets you read a rectangular section from a given page of an image in a Stream.

In a TIFF, this section will honor the orientation tag and in stripped or tiled tiffs uses the minimum set of tiles and strips to fill the rectangle.

(disclaimer, I work for Atalasoft and wrote that interface and implemented it in the TIFF decoder)

link|improve this answer
feedback

Bobrovsky is bang on with his suggestion to use ReadRGBATile (for a tiled image) and then follow part of code on this page: http://bitmiracle.com/libtiff/help/convert-color-tiff-to-a-32-bit-system.drawing.bitmap.aspx

Worked for me.

Big thanks to Bobrovsky!

link|improve this answer
feedback

maybe you can try to use WIC Tools ?

chuzz!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.