Read large tiff images

surbinati

New member
Joined
Mar 16, 2009
Messages
2
Programming Experience
5-10
Hi,

I should read large raster tiff files (15200 x 11680) 24bpp uncompressed (approx 507MB each) but the instruction

Dim b As Bitmap = New Bitmap(strPathNameFile)

generate out of memory exception, but I have 4GB of ram.

It seems that framework .net (2005, 2008) does not support reading these files from disk

Can sameone help me?

Many thanks.
 
I solved my problem reading pixels data directly from the file stream interpreting tiff header and splitting the raster in 16 subfiles

Regards,

Simone
 
Back
Top