Zxing in C # using IKVM

I converted the jar file to a .net dll file using IKVM. Now I'm trying to use it in my .net application, but it seems that qrcodereader.decode requires a BinaryBitmap, which also requires the Luminance parameter as a parameter. Please guide me in this situation, since I could not find the necessary classes that implement abstract classes.

+2
source share
1 answer

Luminance sources are platform specific. You can find examples in the android, java2se and iphone directories. I don’t know if there are brightness sources in the csharp directory, but this code is not actively supported, so even if this happens, a cleaning adaptation will most likely be required (not to mention that I don’t know if it is compatible with IKVM).

+1
source

Source: https://habr.com/ru/post/1393927/


All Articles