RasterEdge provides advanced APIs, allowing developers to handle multi-page TIFF processing included with RasterEdge .NET Imaging SDK.
- Support for document clean-up in multi-page TIFF files
- Creates a new editable multipage tiff image based on an image file
- Select images in multi-page TIFF files
- Add, reorder, delete any page in multi-page TIFF files
- Swap two pages in multi-page TIFF files
- Convert multi-page TIFF color depth
- More image Multi-page TIFF Processing functions
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.)
- Start Visual Studio .NET (2005 or later version);
- Begin a new project with programming language - VB.NET;
- Add RasterEdge.DotNetImaging.dll & RasterEdge.DotNetImaging.MultipageTiff.dll to your VB.NET applications;
- Add the appropriate Imports directive:
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.