Phi Long
Phi Long
I make it workaround like this. ``` public Bitmap applyCropTo(Bitmap bitmap) { int x = findRealCoordinate(bitmap.getWidth(), cropRect.left, imageRect.width()); int y = findRealCoordinate(bitmap.getHeight(), cropRect.top, imageRect.height()); int width = findRealCoordinate(bitmap.getWidth(), cropRect.width(), imageRect.width());...
Hi @SamerPTUK. I have the same issue. Have you got any solutions yet? Thanks!
@LuuNguyen0811 I think it depends on how the library handles reading tags. In this library, it will throw exceptions when something goes wrong https://github.com/AndyQ/NFCPassportReader/blob/89813bafed0490d1dab17e1c2c243e41bebcd455/Sources/NFCPassportReader/PassportReader.swift#L247 So I think we have to...