←Select platform

AddFromImage Method

Summary

Adds a new item from a RasterImage object.

Syntax
C#
C++/CLI
public ImageViewerItem AddFromImage( 
   RasterImage rasterImage, 
   int pageNumber 
) 
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#
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
 
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); 
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.