Search found 2316 matches

by Alex
Mon Mar 11, 2013 8:31 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Issue set delay Frame in Convert to .gif
Replies: 7
Views: 7683

Re: Issue set delay Frame in Convert to .gif

Hello,

Delay between GIF frames can be specified in 1/100 of second.

In your case you can go 2 ways:
  • Use 30 frames and 3/100 second as delay between GIF frames
  • Use 25 frames and 4/100 second as delay between GIF frames
Best regards, Alexander
by Alex
Wed Mar 06, 2013 11:37 am
Forum: Announcements
Topic: Version 6.1 of VintaSoftImaging.NET SDK has been released.
Replies: 25
Views: 14442

Version 6.1.6.1 of VintaSoftImaging.NET SDK has been released.

Version 6.1.6.1 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftPDF.NET Plug-in: Improved the rendering quality of PDF pages which contain images composed from several image-resources. Improved the rendering algorithm of PDF page. Fixed bug in the rendering algo...
by Alex
Tue Mar 05, 2013 11:10 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: 2D-Code from Outlook contact
Replies: 3
Views: 6813

Re: 2D-Code from Outlook contact

Hello Volker, 2D barcode can contain maximum 2.5K characters. You can go 2 ways if you have more than 2.5K characters: Compress your data. I think the contact information can be well compressed. This is the best way. Use the structure append feature and combine up to 16 2D barcodes in one 2D barcode...
by Alex
Mon Mar 04, 2013 3:52 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: 2D-Code from Outlook contact
Replies: 3
Views: 6813

Re: 2D-Code from Outlook contact

Hello Volker,

Yes, this is possible. You need get content of an outlook contact file as binary data and create 2D barcode from the binary data.

Best regards, Alexander
by Alex
Thu Feb 28, 2013 11:57 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: sample to read text content in pdf
Replies: 1
Views: 4280

Re: sample to read text content in pdf

Hello, You have 2 logical mistakes in your code. First, you need convert coordinates from the image space to the page space before getting of text content. Next, you need specify width and height of rectangle as third and fourth parameter in the RectangleF constructor. Here is correct code: ... x1 =...
by Alex
Wed Feb 27, 2013 10:27 am
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: AnnotationCollection.Changed event problem
Replies: 1
Views: 3326

Re: AnnotationCollection.Changed event problem

Hello,

Please send to support@vintasoft.com a simple working project which demonstrates the problem, we need reproduce the problem.

Best regards, Alexander
by Alex
Tue Feb 26, 2013 8:48 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: How To: Export a certain page of PDF to JPG file.
Replies: 7
Views: 8762

Re: How To: Export a certain page of PDF to JPG file.

Hello, Thank you for appreciating of my explanations. Developer can get information from many sources: Off-line documentation: Vintasoft.Imaging.chm file On-line documentation: http://www.vintasoft.com/docs/vsimaging-dotnet/ FAQ: http://www.vintasoft.com/vsimaging-dotnet-faq.html Demo examples: http...
by Alex
Tue Feb 26, 2013 8:32 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: Barcode reader and Parallel.For issue
Replies: 1
Views: 4412

Re: Barcode reader and Parallel.For issue

Hello,

Any instance of the BarcodeReader class is not thread safe and you need use different instances of the BarcodeReader class in different threads.

Best regards, Alexander
by Alex
Mon Feb 25, 2013 3:30 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: How To: Export a certain page of PDF to JPG file.
Replies: 7
Views: 8762

Re: How To: Export a certain page of PDF to JPG file.

How to set DPI to 150, for example ? You need change the rendering settings of PDF document if you want to render PDF pages with custom settings. Here is an example: ... Dim pdfDocument As New PdfDocument(pdfFileName) pdfDocument.RenderingSettings.Resolution = New Resolution(150, 150) ... Best rega...
by Alex
Mon Feb 25, 2013 10:50 am
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: How To: Analyze the position of each word in the text
Replies: 2
Views: 4179

Re: How To: Analyze the position of each word in the text

Hello, Here is an example that demonstrates how to get positions of words on PDF page: Imports System.Drawing Imports Vintasoft.Pdf Imports Vintasoft.Pdf.Tree Imports Vintasoft.Pdf.Content.TextExtraction Module Module1 Sub Main() ' open existing PDF document Dim pdfDocument As New PdfDocument("...