Search found 2316 matches

by Alex
Wed May 22, 2013 1:07 pm
Forum: Announcements
Topic: Version 6.1 of VintaSoftImaging.NET SDK has been released.
Replies: 25
Views: 14441

Version 6.1.13.1 of VintaSoftImaging.NET SDK has been released.

Version 6.1.13.1 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftPDF.NET Plug-in: Improved the algorithm of Type1 font parser. Improved the rendering algorithm of symbols from Type1 fonts. Fixed the freezing of PDF decoder when opening PDF document from a stream...
by Alex
Tue May 21, 2013 8:39 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: PDF Document Security
Replies: 1
Views: 8959

Re: PDF Document Security

Hello, The PdfDocument class has the EncryptionSystem property which allows to manage encryption parameters of PDF document. Please read more info in the documentation. Also please see our PDF Editor Demo. In this demo you can open an existing not encrypted or encrypted PDF document, encrypt not enc...
by Alex
Mon May 20, 2013 1:11 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: PDF Select all search results
Replies: 3
Views: 9016

Re: PDF Select all search results

Hello, Your code is not correct. First, you need create class that will represent the highlighted search result. Here is a code of such class: class HightlightRectangle: IBoundedObject { Rectangle _rect; public HightlightRectangle(Rectangle rect) { _rect = rect; } public Rectangle GetBoundingBox() {...
by Alex
Mon May 20, 2013 9:45 am
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: ECI in DataMatrix
Replies: 4
Views: 12600

Re: ECI in DataMatrix

Hello Ireneusz, Example below shows how encode and decode 3 text strings (strings have different code pages) in text mode in one barcode. public static void Test() { Encoding iso88591 = Encoding.GetEncoding(28591); Encoding iso88595 = Encoding.GetEncoding(28595); Encoding iso88592 = Encoding.GetEnco...
by Alex
Wed May 15, 2013 4:17 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: PDF Select all search results
Replies: 3
Views: 9016

Re: PDF Select all search results

Hello, You need do the following steps if you want to highlight some objects on the image: Create class, for example, HighlightedSearchResult, that represents the highlighted search result. This class must implement the IBoundedObject interface. Create an instance of the HighlightTool class and make...
by Alex
Wed May 15, 2013 4:01 pm
Forum: VintaSoft Barcode .NET SDK Discussions
Topic: ECI in DataMatrix
Replies: 4
Views: 12600

Re: ECI in DataMatrix

Hello Ireneusz, Our barcode writer does not encode text, you need encode text by yourself, i.e. you should create a sequence of value items (ValueItemBase) from your text and pass the value items to the barcode writer. Our barcode reader also does not decode text, you need decode text by yourself, i...
by Alex
Mon May 13, 2013 3:33 pm
Forum: Announcements
Topic: Version 8.3 of VintaSoftTwain.NET SDK has been released.
Replies: 5
Views: 4887

Version 8.3.4.1 of VintaSoftTwain.NET SDK has been released.

Version 8.3.4.1 of VintaSoftTwain.NET SDK has been released.

What's new in this version:
  • Optimized the usage of device capabilities.
by Alex
Tue May 07, 2013 2:39 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: New features request for version 7.0 of VintaSoftAnnotation.
Replies: 6
Views: 6621

Re: New features request for version 7.0 of VintaSoftAnnotat

Hello Steve, Any timeframe on when v7.0 will be released? We plan to release version 7.0 of VintaSoftImaging.NET SDK at the end of June. And will the WPF be a separate charge/control from the WINFORM control? VintaSoftImaging.NET SDK will have the same licensing model like VintaSoftBarcode.NET SDK. ...
by Alex
Tue May 07, 2013 2:18 pm
Forum: Announcements
Topic: Version 6.1 of VintaSoftImaging.NET SDK has been released.
Replies: 25
Views: 14441

Version 6.1.12.1 of VintaSoftImaging.NET SDK has been released.

Version 6.1.12.1 of VintaSoftImaging.NET SDK has been released. What's new in this version of VintaSoftImaging.NET SDK: Now the InvertCommand class inverts image data, previous version inverted the image palette and did not change the image data. InvertCommand class now can process region of the bla...
by Alex
Fri May 03, 2013 9:16 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Bad protocol error on device.open
Replies: 1
Views: 4933

Re: Bad protocol error on device.open

Hello, Please generate log-file and send it to our support team at support@vintasoft.com for analyze. Here are steps which you should do if you want to generate an extended log-file of scanner's work: 1. Enable logging (add the lines below to code of your application): TwainEnvironment.EnableDebuggi...