←Select platform

AddFromImageFile Method

Summary

Adds a new raster image item from a disk file.

Syntax
C#
C++/CLI
public ImageViewerItem AddFromImageFile( 
   string fileName, 
   int pageNumber 
) 
public:  
   ImageViewerItem^ AddFromImageFile( 
      String^ fileName, 
      int pageNumber 
   ) 

Parameters

fileName

Disk file containing the image file.

pageNumber

The 1-based page number to load. Use this if fileName contains more than one page. Pass 1 to load

the first page found.

Return Value

The newly created item of successful

Remarks

This method will load the data as a raster image using ImageViewer.RasterCodecsInstance.Load. To load the data as an SVG document, use AddFromSvgFile.

This method allows you to quickly add an item from a disk file. It is the equivalent of the following code:

ImageViewerItem item = new ImageViewerItem(); 
item.Image = imageViewer.RasterCodecsInstance.Load(fileName, pageNumber); 
imageViewer.Items.Add(item); 
Example
C#
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
try 
{ 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.tif"); 
   _imageViewer.Items.AddFromImageFile(fileName, 1); 
} 
catch (Exception ex) 
{ 
   Debug.WriteLine(ex.Message, "Error"); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.