Image Viewing in VB.NET

Comprehensive VB.NET Codes for Loading & Viewing Image in .NET Imaging SDK

.NET Imaging Viewer
SDK & Add-Ons
Image Controls for:
RasterEdge .NET Imaging SDK covers image display, from the basics of image display to more advanced features:
Image Viewing
Here is a detailed VB.NET sample for opening and displaying images with RasterEdge .NET Imaging SDK. (For C#.NET developers, please go to Image Viewing for C#.NET. Want to view Image and document in Winforms or Web applications, please go to View Images in Winforms and Web Document Image Viewing.) We also provide online RasterEdge.DocImageSDK Developer's Guide.pdf for convinent solution.
Imports System.IO
Imports RasterEdge.Imaging

Open a Single image or Multi-page Image

You may easily load single or multipage-image with following VB.NET codes:
Public Function SetAntiAliasing() As RasterEdgeImageStatus

Anti-aliasing

Users are allowed to remove alias when you view an image with following VB.NET codes:
Public Function SetAntiAliasing() As RasterEdgeImageStatus

Fit to Page

When you view an image, you may choose “Fit to width”, “Fit to height” or “Fit to page” with with following VB.NET codes:
Public Function SetZoomHeightViewer() As RasterEdgeImageStatus
Public Function SetZoomWidthViewer() As RasterEdgeImageStatus
Public Function SetZoomViewer() As RasterEdgeImageStatus

Zoom In and Zoom Out

It is used for zooming in or zoomming out images as you wish. See the following code:
Public Function ZoomIN() As RasterEdgeImageStatus
Public Function ZoomOUT() As RasterEdgeImageStatus
Rotate
Rotate images to 90, 180, 270 degrees with following VB.NET codes:
Public Function Rotate(ByVal ImageID As Integer, ByVal Rotation As RotateAngle) As RasterEdgeImageStatus 
More Tutorials!
Find more user guides with RasteEdge .NET Image SDK using VB.NET sample codings!
Want to install Imaging SDK in Winforms or Web applications, please go to Use Imaging SDK in Winforms and Web Document Image Viewer.