Draws and pans a spy glass on the viewer.
public class ImageViewerSpyGlassInteractiveMode : ImageViewerInteractiveMode
Public Class ImageViewerSpyGlassInteractiveMode
Inherits ImageViewerInteractiveMode
public ref class ImageViewerSpyGlassInteractiveMode : ImageViewerInteractiveMode
ImageViewerSpyGlassInteractiveMode derives from ImageViewerInteractiveMode and subscribes to the following events of the InteractiveService:
The mode will set InteractiveEventArgs.IsHandled to true under the normal conditions for these events.
The ImageViewerSpyGlassInteractiveMode interactive mode does not perform any action on the viewer (besides drawing the the spy glass). It is up to the user to implement any custom operation required, (for example, to implement a magnify glass). The ImageViewerMagnifyGlassInteractiveMode derives from the ImageViewerSpyGlassInteractiveMode and overrides the OnDrawImage method to draw a magnified version of the area under the spy glass.
The ImageViewerSpyGlassInteractiveMode also supports redirecting the output to an external control instead of the viewer surface. For an example, refer to RedirectControl.
For more information, refer to Image Viewer Interactive Modes.
This example will use ImageViewerSpyGlassInteractiveMode to show an inverted portion of the image under the mouse.
Start with the ImageViewer example, remove all the code inside the example function (search for the "// TODO: add example code here" comment) and insert the following code:
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
_imageViewer.InteractiveModes.BeginUpdate();
var spyGlass = new ImageViewerSpyGlassInteractiveMode();
spyGlass.BackgroundBrush = new SolidBrush(Color.FromArgb(128, Color.Yellow));
spyGlass.BackgroundBrush = Brushes.Yellow;
spyGlass.AutoItemMode = ImageViewerAutoItemMode.AutoSet;
spyGlass.EnsureVisible = false;
_imageViewer.InteractiveModes.Add(spyGlass);
_imageViewer.InteractiveModes.EndUpdate();
Imports Leadtools
Imports Leadtools.Controls
Imports Leadtools.Codecs
Imports Leadtools.Drawing
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Color
_imageViewer.InteractiveModes.BeginUpdate()
Dim spyGlass As New ImageViewerSpyGlassInteractiveMode()
spyGlass.BackgroundBrush = New SolidBrush(Color.FromArgb(128, Color.Yellow))
spyGlass.BackgroundBrush = Brushes.Yellow
spyGlass.AutoItemMode = ImageViewerAutoItemMode.AutoSet
spyGlass.EnsureVisible = False
_imageViewer.InteractiveModes.Add(spyGlass)
_imageViewer.InteractiveModes.EndUpdate()
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