Hi all. I'm trying to get a .NET wrapper for Tesseract working in my application (https://github.com/charlesw/tesseract), and I'm having trouble. When I try to make calls to the library, I get the error "Error 11 The type 'System.Drawing.Bitmap' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'." Apparently System.Drawing is not yet supported in Xamarin. My question is, is there any way around this? I only need System.Drawing for this library to work, I'm not using it myself, but I also don't have any easy way to modify that library. Is there any potential workaround for this? It seems ridiculous that I can't use a C# library just because Xamarin doesn't currently support a standard .NET library. Thanks in advance.
↧