Example 11: Merge 3 TIFF files into a single PDF - C# Copy
Add a reference in your Visual Studio project to docCreator library.
To do this:
a. On the Project menu, click Add Reference;
b. On the COM tab, locate Neevia docCreator COM interface and then click Select;
c. Click OK in the Add References dialog box to accept your selections.
1
2
3
4
5
6
7
8
9 | Neevia.docCreator DC = new Neevia.docCreator();
DC.mergeMultipleTIFF(@"d:\file1.tif+d:\file2.tif+d:\file3.tif", @"d:\out.tif");
DC.convertImage(@"d:\out.tif", @"d:\out.pdf");
DC.fileDelete(@"d:\out.tif");
DC = null;
MessageBox.Show("Done converting!!!");
|