PDF Editor Demo Problem

Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.

Moderator: Alex

Post Reply
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: PDF Editor Demo Problem

Post by Alex »

Hello Jacky,

Please try to use the latest (4.0.5.3) version of VintaSoftImaging.NET SDK - this version has improvements of some bugs with image viewer.

Let me know if you will have any problems or questions.

Best regards, Alexander
wilson
Posts: 2
Joined: Tue May 04, 2010 4:19 am

Re: PDF Editor Demo Problem

Post by wilson »

Hi Alex,

Where could we download latest (4.0.5.3) version of VintaSoftImaging.NET SDK?

The download file you have with link http://www.vintasoft.com/download.html is version 4.0.5.1 only.

Best regards,
Wilson Fung
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: PDF Editor Demo Problem

Post by Alex »

Hi Jacky,

We have updated the "download" page and now version 4.0.5.3 available here: http://www.vintasoft.com/download.html

Best regards, Alexander
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: PDF Editor Demo Problem

Post by Alex »

Hello Jacky,

You should use VintaSoftImaging.NET SDK with VintaSoftAnnotation.NET and VintaSoftPDF.NET Plug-ins for your requirements.

Also you can use VintaSoftJBIG2.NET Plug-in and get very small documents if your documents are black-white.

Best regards, Alexander
wilson
Posts: 2
Joined: Tue May 04, 2010 4:19 am

Re: PDF Editor Demo Problem

Post by wilson »

Hi I am actually Jacky's colleague and we're reviewing the Vinta before we make a purchase. We would integrate VintaSoft with our .NET application.

I am sure they would be explained with supported manual, but it would save us a lot of time if you could tell us whether VintaSoft Imaging could do the followings

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?

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.

Best regards,
Wilson Fung
Alex
Site Admin
Posts: 2305
Joined: Thu Jul 10, 2008 2:21 pm

Re: PDF Editor Demo Problem

Post by Alex »

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
Post Reply