I am writing a TIFF image viewer in Silverlight 4 that will display as a scrollable image I am using BitMiracle's LibTiff to read the tiff pages, generate thumbnails, and as they click through the thumbnails, display a large version of the thumbnail.
Im having trouble with large images dimensions 14440 x 7354. The file is actually 16.3 MB but when attempting to allocate a buffer on a 32-bit system I get an OutOfMemory exception.
int imageSize = height * width;
int[] raster = new int[imageSize];
// Read tiff data into raster buffer
ti.ReadRGBAImage(width, height, raster);
// Create a WriteableBitmap and load its Pixels
var wb = new WriteableBitmap(width, height);
for (int y = 0; y < height; y++)
{
var ytif = y * width;
var ybmp = (height - y - 1) * width;
for (int x = 0; x < width; x++)
{
var currentValue = raster[ytif + x];
// Shift the Tiff's RGBA format to the Silverlight WriteableBitmap's ARGB format
wb.Pixels[ybmp + x] = Tiff.GetB(currentValue) | Tiff.GetG(currentValue) << 8 | Tiff.GetR(currentValue) << 16 | Tiff.GetA(currentValue) << 24;
}
}
I don't want to go find a 3rd party control to do this but want to learn how to read these images in and display them properly.
Here is the portion of the XAML that the image is going to be poured into. Its a ScrollViewer with a wrap panel that image element pours into at run time.
This is lower level stuff that want to learn but do not know where to get started.
<ig:DocumentContentHost>
<ig:DocumentContentHost.Panes>
<ig:TabGroupPane WindowPositionMenuVisibility="Collapsed" Width="100" MaxWidth="100" CloseButtonVisibility="Collapsed">
<ig:ContentPane x:Name="ImagePanel" Header="Current Image" IsActivePane="True" IsDocumentPane="True" AllowClose="False" CloseButtonVisibility="Collapsed" Background="WhiteSmoke" WindowPositionMenuVisibility="Collapsed" PinButtonVisibility="Collapsed" AllowDocking="False">
<ScrollViewer x:Name="sv2" Grid.Column="2" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" BorderBrush="{x:Null}" IsEnabled="True" IsTabStop="True">
<toolkit:WrapPanel x:Name="BTImage" >
</toolkit:WrapPanel>
</ScrollViewer>
</ig:ContentPane>
</ig:TabGroupPane>
</ig:DocumentContentHost.Panes>
</ig:DocumentContentHost>
I want to be able to load the image sized to fit the height and width of the scrollviewer and to scroll the portion of the image not visible into view without loading into memory.
Thank you