现在,我想根据设备的UUID动态生成QR码。我想知道如何在gluon中支持多平台吗?如果我不喜欢使用由gluon Team开发的normall Java库或特殊的lib,也请推荐我。
答案 0 :(得分:1)
您可以使用Zxing library在设备上生成QR。这与Android上的Charm Down BarcodeScan服务使用的库相同。
首先,将此依赖项添加到您的构建中:
compile 'com.google.zxing:core:3.3.3'
现在,您可以将设备服务与QR生成器结合使用以检索UUID。
拥有zxing格式的QR后,您将需要生成图像或文件。
鉴于您无法在Android / iOS上使用Swing,则必须避免使用MatrixToImageWriter
,并根据生成的像素手动进行操作。
类似这样的东西:
public Image generateQR(int width, int height) {
String uuid = Services.get(DeviceService.class)
.map(DeviceService::getUuid)
.orElse("123456789"); // <--- for testing on desktop
QRCodeWriter qrCodeWriter = new QRCodeWriter();
try {
BitMatrix bitMatrix = qrCodeWriter.encode(uuid, BarcodeFormat.QR_CODE, width, height);
WritablePixelFormat<IntBuffer> wf = PixelFormat.getIntArgbInstance();
WritableImage writableImage = new WritableImage(width, height);
PixelWriter pixelWriter = writableImage.getPixelWriter();
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
pixelWriter.setColor(x, y, bitMatrix.get(x, y) ?
Color.BLACK : Color.WHITE);
}
}
return writableImage;
} catch (WriterException e) {
e.printStackTrace();
}
return null;
}
现在,您可以从视图中调用此方法,并添加一个ImageView
来呈现生成的图像:
ImageView imageView = new ImageView();
imageView.setFitWidth(256);
imageView.setFitHeight(256);
imageView.setImage(service.generateQR(256, 256));
编辑
如果要生成QR码或条形码,则可以用以下代码替换generateQR
中的上述代码:
MultiFormatWriter codeWriter = new MultiFormatWriter();
BitMatrix bitMatrix = codeWriter.encode(uuid, format, width, height);
...
,然后将参数设置为以下格式:
BarcodeFormat.QR_CODE
,并使用256x 256之类的正方形尺寸BarcodeFormat.CODE_128
,并使用256 x 64之类的矩形尺寸