Search found 2317 matches

by Alex
Mon Mar 11, 2013 1:07 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Issue set delay Frame in Convert to .gif
Replies: 7
Views: 7718

Re: Issue set delay Frame in Convert to .gif

Hello, Your code is not optimal, here is better code: GifFile NewFileGif = new GifFile(1980, 1020); int delayImage = 100 / 30; // Time 1s / 30 image = Time delay a Image for (int a = 0; a < 30; a++) // Add 30 Image { VintasoftImage imgobj = new VintasoftImage(this.ListContens[0].ListPath[a].ToString...
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: 7718

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: 14504

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: 6895

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: 6895

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: 4325

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: 3343

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: 8857

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: 4477

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: 8857

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...