Size of the image in the viewer (single item mode).
public virtual LeadSize ImageSize { get; set; }
The size of the image in the viewer in pixels (single item mode). Default value is LeadSize.Empty.
This is a helper property for applications that use ImageViewer in single item mode. It is a shortcut to ImageSize of ActiveItem. For more information, refer to Image Viewer in Single Item Mode.
using Leadtools;using Leadtools.Controls;using Leadtools.Codecs;using Leadtools.Drawing;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Color;using Leadtools.Svg;if (_imageViewer.ActiveItem.HasImage){LeadSize size = _imageViewer.ActiveItem.ImageSize;// copy the ActiveItem to new Image...RasterImage image2 = _imageViewer.ActiveItem.Image.Clone();// Resize the image to new sizeSizeCommand cmd = new SizeCommand(size.Width / 2, size.Height / 2, RasterSizeFlags.None);cmd.Run(image2);// ...// put your code here// ...image2.Dispose();}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
