wownero
/
wownerujo
Archived
4
0
Fork 0

don't try to generate 0-size qrcodes (#267)

upstream
m2049r 6 years ago committed by GitHub
parent 425246beb1
commit d18999e731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -335,6 +335,7 @@ public class ReceiveFragment extends Fragment {
}
public Bitmap generate(String text, int width, int height) {
if ((width <= 0) || (height <= 0)) return null;
Map<EncodeHintType, Object> hints = new HashMap<>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);