Search found 2309 matches

by Alex
Mon Jun 03, 2013 3:41 pm
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Device manager initialization problem
Replies: 4
Views: 8318

Re: Device manager initialization problem

Hello Alex,

Have you solved the problem?

Best regards, Alexander
by Alex
Wed May 29, 2013 9:09 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Device manager initialization problem
Replies: 4
Views: 8318

Re: Device manager initialization problem

Hello Alex, Now it does open device manager but it can't find any attached devices. Compiled example from /Bin works fine though. You can see devices when you run our demo from "Bin" directory and cannot see devices when you compile and run example from source codes. Am I right? What examp...
by Alex
Tue May 28, 2013 8:27 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Device manager initialization problem
Replies: 4
Views: 8318

Re: Device manager initialization problem

Hello, I think you have 64-bit version of Windows. Please read the 'I see "Cannot initialize the device manager" message when I open the device manager. How to solve this problem?' and 'I cannot see devices in the TWAIN selection dialog of my application but can see them in other applicati...
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: 14187

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

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

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

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

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

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

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.