Leadtools.Windows.Controls.Pro Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.03.25
Load Method
See Also  Example
Leadtools.Windows.Controls Namespace > RasterImageViewerElement Class : Load Method




Loads the specified image stream using specific options

Overload List

OverloadDescription
Load(Stream,Int32,CodecsLoadByteOrder,Int32) Loads the specified image stream using specific options  
Load(String,Int32,CodecsLoadByteOrder,Int32) Loads the specified image file using specific options.  
Load(Stream,Int64,Int64) Loads an image file, letting you specify the location of the image data within the stream.  

Example

This example will show how to load an image using different bits per pixel and color order. Also, it will show how to load a single page from a multipage file. All loading operations load from a stream rather than from a file on disk.

Visual BasicCopy Code
Public Sub RasterImageViewerElement_Load1(ByVal viewer As RasterImageViewerElement)
   Dim multiPageFileName As String = "C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Eye.gif"

   Dim fs As FileStream = File.OpenRead(multiPageFileName)

   ' Load the first page
   Dim first As Integer = 1
   viewer.Load(fs, 0, CodecsLoadByteOrder.BgrOrGray, first)
   Console.WriteLine("Loading pages {0}", first)
   viewer.Image.Dispose()

   ' Load the second page
   first = 2
   viewer.Load(fs, 0, CodecsLoadByteOrder.BgrOrGray, first)
   Console.WriteLine("Loading pages {0}", first)
   viewer.Image.Dispose()
End Sub
C#Copy Code
public void RasterImageViewerElement_Load1(RasterImageViewerElement viewer) 

   string multiPageFileName = @"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Eye.gif"; 
 
   FileStream fs = File.OpenRead(multiPageFileName); 
 
   // Load the first page 
   int first = 1; 
   viewer.Load(fs, 0, CodecsLoadByteOrder.BgrOrGray, first); 
   Console.WriteLine("Loading pages {0}", first); 
   viewer.Image.Dispose(); 
 
   // Load the second page 
   first = 2; 
   viewer.Load(fs, 0, CodecsLoadByteOrder.BgrOrGray, first); 
   Console.WriteLine("Loading pages {0}", first); 
   viewer.Image.Dispose(); 
}

Remarks

The file can be in any supported image file format and bits per pixel, whether compressed or uncompressed.

LEADTOOLS will attempt to load corrupted files, so you can see at least a portion of the image.

Support for 12- and 16-bit grayscale images is only available in the Document/Medical Imaging editions.

For supported formats, refer to Summary of All Supported Image File Formats.

LEADTOOLS loads all PDF files as Raster PDF uncompressed RasterImageFormat.RasPdf, regardless of the compression and color space used when saving the file.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

Leadtools.Windows.Controls.Pro.dxp requires a WFP Module license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features and Unlocking Special LEAD Features.