C#
VB
Java
Objective-C
WinRT C#
Represents a scrollable control that displays an image with optional interactive UI operations.
public class ImageViewer : Leadtools.Control
Public Class ImageViewer
Inherits Leadtools.Control
public sealed class ImageViewer : Leadtools.Control
iOS:
@interface LTImageViewer : UIView <NSCoding>
macOS:
@interface LTImageViewer : NSView <NSCoding>
public class ImageViewer extends ViewGroup
function Leadtools.Controls.ImageViewer()
To use the ImageViewer class in your Windows Runtime application please see Using LEADTOOLS Viewer Controls in Visual Studio for WinRT (Windows Store)
ImageViewer supports the following functionality:
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Controls;
public async Task<ImageViewer> ImageViewerExample()
{
ImageViewer imageViewer = new ImageViewer();
Uri imageUrl = new Uri("ms-appx:///Assets/PngImage2.png");
// Set the interactive mode to PanZoom
var interactiveMode = new Leadtools.Controls.ImageViewerPanZoomInteractiveMode();
imageViewer.DefaultInteractiveMode = interactiveMode;
// Set the image Source
imageViewer.Source = new BitmapImage(imageUrl);
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET