Hello Wilson,
1. highlight multiple images in window folder, then right click drop box for option "combine". vintasoft would combined the highlighted images at backgrounds and create a new multiple paged image document at the same folder.
2. if so, could we highlight to combine tiff & pdf and result in 1 pdf file? Could we rename the newly created image document through hard coded logics? Could we delete the original 2 files automatically after the creation of the new image document?
VintaSoftImaging.NET SDK with VintaSoftPDF.NET Plug-in allows to combine BMP, GIF, PNG, JPEG, TIFF, PDF files to one PDF document.
Here is a snippet of code:
- Code: Select all
ImageCollection images = new ImageCollection();
images.Add("test.bmp");
images.Add("multipage.tif");
images.Add("input.pdf");
images.Add("animated.gif");
images.SaveSync("result.pdf");
VintaSoftImaging.NET SDK with VintaSoftPDF.NET and VintaSoftJBIG2.NET Plug-ins allows to combine BMP, GIF, PNG, JPEG, TIFF, PDF, JBIG2 files to one PDF document (black-white images can be saved with JBIG2 compression in PDF document).
Here is a snippet of code:
- Code: Select all
ImageCollection images = new ImageCollection();
images.Add("test.bmp");
images.Add("multipage.tif");
images.Add("input.pdf");
images.Add("animated.gif");
images.Add("jbigDocument.jb2");
images.SaveSync("result.pdf");
3. We would be indexing the page under viewing and we need Vintasoft to provide us reference page of the page viewing? e.g. we are writing in our database a remark for page 1 of image document, and we would need Vintasoft to tell us we are viewing page 1 while we are saving the remark. Of course, vintasoft need to tell us we are on page 2 of the document when we move the our view to 2nd page so that we know the remark we save onto our database is related back to page 2 of the document.
VintasoftImage object has the Guid and Tag properties. Guid allows to identify image, Tag allows to store additional information with the image.
Best regards, Alexander