←Select platform

AddFromImage Method

Summary

Adds a new item from a RasterImage object.

Syntax
C#
VB
C++
public ImageViewerItem AddFromImage( 
   RasterImage rasterImage, 
   int pageNumber 
) 
Public Function AddFromImage( 
   ByVal rasterImage As RasterImage, 
   ByVal pageNumber As Integer 
) As ImageViewerItem 
public:  
   ImageViewerItem^ AddFromImage( 
      RasterImage^ rasterImage, 
      int pageNumber 
   ) 

Parameters

rasterImage

Source image.

pageNumber

1-based page number of rasterImage. Pass 1 if rasterImage contains a single page (frame).

Return Value

The newly created item if successful.

Remarks

Use AddFromSvgDocument to add an item from an SVG document.

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

ImageViewerItem item = new ImageViewerItem(); 
item.Image = rasterImage; 
item.PageNumber = pageNumber; 
imageViewer.Items.Add(item); 

If rasterImage is null, then an empty item is added.

Example
C#
VB
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
using LeadtoolsExamples.Common; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
RasterImage image = RasterImage.Create(200, 200, 32, 96, RasterColor.White); 
_imageViewer.Items.AddFromImage(image, 1); 
Imports Leadtools 
Imports Leadtools.Controls 
Imports Leadtools.Codecs 
Imports Leadtools.Drawing 
Imports Leadtools.ImageProcessing 
Imports Leadtools.ImageProcessing.Color 
Imports Leadtools.Svg 
 
Dim image As RasterImage = RasterImage.Create(200, 200, 32, 96, RasterColor.White) 
_imageViewer.Items.AddFromImage(image, 1) 

Requirements

Target Platforms

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

Leadtools.Controls Assembly