Multi-page TIFF Processing in VB.NET

Comprehensive VB.NET Codes for Multi-page TIFF Processing within .NET Imaging SDK

.NET Imaging Viewer
SDK & Add-Ons
Image Controls for:
RasterEdge provides advanced APIs, allowing developers to handle multi-page TIFF processing included with RasterEdge .NET Imaging SDK.
Multi-page TIFF Processing
Here is a detailed VB.NET sample for processing multipage TIFF files with RasterEdge .NET Imaging SDK and Multi-page TIFF Processing Add-on. (For C#.NET developers, please go to Create Multi-page TIFF Processing for C#.NET. Want to view Image and document in Winforms or Web applications, please go to Multi-page TIFF Processing in Winforms and Web Document Image Multi-page TIFF Processing.)
Imports System.IO
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing
Imports RasterEdge.Imaging.MultipageTiff

Create an Editable Multi-page TIFF

You may create multi-page TIFF images with following VB.NET codes:
Public Function TiffCreateMultiPageFromFileICM(ByVal FilePath As String) As Integer 

Add any page in Multi-page TIFF images

The following code shows how to add a new page into multi-page TIFF images:
Public Function TiffInsertPageFromFile(ByVal ImageID As Integer, ByVal Position As Integer, ByVal FilePath As String) As
RaterEdgeImage

Delete a Page in Multipage TIFF Image

If you do not need a page anymore, copy following VB.NET codes to delete:
Public Function TiffDeletePage( ByVal ImageID As Integer, ByVal Page As Integer) As RaterEdgeImageStatus

Swap a Page in a Multipage TIFF Image

You can change two images position in multi-page TIFF images with following VB.NET codes:
Public Function TiffSwapPages(ByVal ImageID As Integer, ByVal Page1 As Integer, ByVal Page2 As Integer) 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.