Patryk
Patryk

Reputation: 24120

I have System.Drawing (v2.0) added but compiler asks for it?

I have a project (for SmartDevice) where I need to add a reference to System.Drawing (v2.0) what I have done but the compiler keeps asking for it.

Anyone has some idea how to solve this ?

enter image description here enter image description here

Upvotes: 0

Views: 111

Answers (2)

competent_tech
competent_tech

Reputation: 44941

The issue is that Tesseract OCR will not currently run in Windows Mobile. Various people have tried and suggested solutions such as using the GRAPHICS_DISABLED or EMBEDDED compiler defines, but no one has reported this to be working yet.

Due to the computational complexity of OCR and the limited resources available in the WinMo platform, there are not many solutions available, but you could try:

1) Getting the tesseract source and applying the suggested compiled directives

2) TextRact for android and winmo.

3) The ABBYY Mobile OCR Engine.

Upvotes: 1

Steve
Steve

Reputation: 31652

CompactFramework and regular desktop framework components are different. Something, somewhere, in your project is using the desktop version of System.Drawing... either your reference is to the wrong version or you're using a component that references the desktop version.

Upvotes: 1

Related Questions