Guide for VB.NET
Core Document Formats
Merge or Split Tiff File(s)
Additional Features

VB.NET TIFF - TIFF File(s) Merging & Splitting Guide

VB.NET Code on Merging and Splitting TIFF Documents with .NET TIFF File Editor

VB.NET
Home > .NET Imaging SDK > VB.NET > Merge and Split Document(s)

"This online guide content is Out Dated!
    Please get the latest XDoc.Tiff C# Developer Guide here.
"

TIFF files merging and splitting application in VB.NET class of RasterEdge .NET TIFF document processing SDK will give the best solutions for following TIFF document modifying problems which users always encounter when finding and evaluating an TIFF document management application. itextsharp add image to pdf vb.net, convert pdf byte array to image c#, read pdf file line by line using vb.net, c# pdf editor, vb.net print pdf to specific printer, qr code using c#.
Related .net document control helps:
asp.net annotate pdf using c#: ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
asp.net pdf document viewer c#: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
asp.net edit pdf page control: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net office viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
c# asp.net mvc document viewer: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net mvc image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net mvc display tiff: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
  • If I want to combine or separate certain TIFF documents within VB.NET, what kind of TIFF document control should I use?
  • Can you offer me the complete methods and sample codes for TIFF documents combining and merging?
  • How to split and separate a target TIFF document into two or more independent sub-TIFF files in VB.NET?
  • What are the advantages and superiorities of RasterEdge VB.NET TIFF document processor?
vb.net convert pdf to text file, excel to pdf using itextsharp in c#, c# pdf metadata, c# pdfsharp fill pdf form, itextsharp tiff to pdf vb.net, c# create pdf page, vb.net pdf ocr.
What Should Be Used for TIFF Documents Merging and Splitting?
If anyone who wants to combine two or more TIFF files into a single one in VB project or wants to split a huge TIFF document into two or more separate sub-TIFF files in VB.NET, a professional .NET TIFF document merging & splitting toolkit is indispensable. asp.net mvc open word document in browser, asp.net tiff viewer, show image in repeater asp.net, asp.net edit pdf, preview pdf in asp.net, mvc display pdf in browser, asp.net pdf viewer c#.
What's more, such TIFF document combining and splitting library for VB.NET should be completely compatible with current .NET Framework (including 2.0, 3.0, 3.5, 4.0 & 4.5) and Visual Studio versions (like 2005, 2008, 2010 & 2012) for programming convenience.
For these reasons, we highly recommend RasterEdge .NET TIFF document merging and splitting assembly to you, which has been perfectly designated to fulfill users' specific requirements on combining and separating TIFF documents with its easy-to-configure and user-friendly VB.NET programming features. You can't miss it!
Besides TIFF document merger and splitter, RasterEdge still provides other market-leading TIFF file and page managing applications.
Precise APIs and VB Demo Codes for TIFF Documents Merging
As long as you have implemented "RasterEdge.Imaging.Basic.dll" and "RasterEdge.Imaging.TIFF.dll" references to your VB.NET TIFF document project, you can directly activate and evaluate following APIs, methods and sample code on combining and merging multiple TIFF documents into a new one.

See TIFF Documents Combining APIs and Methods

Private Sub Combine(source As List(Of BaseDocument), destn As Stream) Implements TIFFDocument.Combine
End Sub
Private Sub Combine(source As List(Of BaseDocument), destn As [String]) Implements TIFFDocument.Combine
End Sub
Private Sub Combine(source As List(Of [String]), destn As Stream) Implements TIFFDocument.Combine
End Sub
Private Sub Combine(source As List(Of [String]), destn As [String]) Implements TIFFDocument.Combine
End Sub
Notes: with above APIs and methods of RasterEdge .NET TIFF documents merging control, VB.NET programmers can
  • Combine two or more TIFF files to create a new one and save it to local path or memory stream
  • Merge certain pages from different TIFF documents and create a new TIFF document from the source pages

Just Copy Following VB.NET TIFF Combining Demo Code

Copy and paste demo code below to your VB.NET application for direct TIFF documents merging.
'''<summary>
''' Combine a list of TIFF document into a single one and save it to stream
''' </summary>
''' <param name="s"></param>
''' <param name="docList"></param>
Public Sub CombineDocumentAndSaveItToFile(filePath As [String], docList As List(Of TIFFDocument))
TIFFDocument.Combine(docList, filePath)
End Sub


''' <summary>
''' Combine a list of TIFF document into a single one and save it to file
''' </summary>
''' <param name="s"></param>
''' <param name="docList"></param>
Public Sub CombineDocumentAndSaveItToFile(filePath As [String], docList As [String]())
TIFFDocument.Combine(filePath, docList)
End Sub
Entire Sample Methods and VB Code for TIFF Document Splitting
Contrary to TIFF documents combining, users also can finish TIFF document separation under the guide of following sample methods and code that are compatible within VB.NET class.

VB.NET APIs for Your TIFF Document Splitting Program

Private Sub SplitDocument(source As Stream, index As Integer, destns As List(Of [String])) Implements TIFFDocument.SplitDocument
End Sub
Private Sub SplitDocument(source As [String], index As Integer, destns As List(Of [String])) Implements TIFFDocument.SplitDocument
End Sub
Private Sub SplitDocument(source As Stream, index As Integer, destns As List(Of Stream)) Implements TIFFDocument.SplitDocument
End Sub
Private Sub SplitDocument(index As Integer, source As [String], destns As List(Of Stream)) Implements TIFFDocument.SplitDocument
End Sub
Notification on TIFF document separating APIs for VB.NET application:
APIs and methods here are capable of allowing users to separate and split a certain TIFF document into two sub-files at one time. And if you want to separate the single TIFF file into 2, 4, 6 or even more, you can resplit the separated TIFF documents.

Implement Sample Code below to Separate TIFF File

''' <summary>
''' Split a TIFF document into two sub-documents
''' </summary>
''' <param name="originalDocument"></param>
''' <param name="pageIdx"></param>
Public Sub SplitTIFFDocument(sourceFilePath As [String], index As Integer, destnsPath As List(Of [String]))
TIFFDocument.SplitDocument(sourceFilePath, index, destnsPath)
End Sub
Advantages and Superiorities of RasterEdge VB.NET TIFF Document Processor
As we all know, the current document market has been saturated with many TIFF document processing and editing applications, so, why choose our TIFF document processor for your VB.NET project may be taken into your consideration. Following explanations will convince you!

High-Efficiency TIFF Document Pre-processing Options

Mature and reliable TIFF document loading and navigating system allows you to load the target would-be processed and manipulated TIFF files in high-speed and high-quality.

Easy-to-use Sample APIs and Codes for Shortening Your Programming Time

In our online VB.NET tutorial, users can get the most comprehensive TIFF document processing and editing sample methods and codes. No matter you are professional VB developers or non-technical end users, you can understand and apply our products in high-efficiency.

Compatible with all TIFF Document or Image Manipulation in .NET Framework

Like mentioned before, RasterEdge .NET TIFF document processing application supports all the .NET Framework and Visual Studio versions.


Recommend this to Google+


RasterEdge.com is professional provider of ASP.NET MVC Document Viewer, ASP.NET PDF Viewer, MVC PDF Viewer document, content and imaging solutions, available for ASP.NET AJAX, Silverlight, Windows Forms as well as WPF. We are dedicated to provide powerful & profession imaging controls, PDF document, image to pdf files and components for capturing, viewing, processing, converting, compressing and stroing images, documents and more.

©2000-2024 Raster Edge.com