gpt4 book ai didi

java - 如何使用 HTML 颜色通过 zxing 编写二维码

转载 作者:行者123 更新时间:2023-12-02 03:06:02 24 4
gpt4 key购买 nike

我正在尝试使用 Java 中的 Google zxing 库编写彩色 qrcode。在这个示例中效果很好,它似乎使用了 ARGB 颜色。

不幸的是,我必须在应用程序中使用 HTML/Hex 值作为颜色,因此我试图弄清楚如何构建或转换它。

我已经构建了 RGB 颜色并使用 alpha 值作为其前缀。但是,虽然 RGB 值最多可达 255 - 3 位数字,但 MatrixToImageWriter 中的参数似乎仅适用于 8 位数字。这意味着每种颜色只有两位数字。

这个“MatrixToImageConfig(-10223615,-1)”是什么值?有人可以解释一下这些颜色值或者给我一个如何计算 HTML 的示例吗?

谢谢!

QRCodeWriter qrCodeWriter = new QRCodeWriter();

BitMatrix bitMatrix = qrCodeWriter.encode(createQRCodeContent, BarcodeFormat.QR_CODE, createQRCodeSize, createQRCodeSize);

// Color
MatrixToImageConfig conf = new MatrixToImageConfig(-10223615,-1);

BufferedImage qrcode = MatrixToImageWriter.toBufferedImage(bitMatrix, conf);

File qrfile = new File (targetPath);

ImageIO.write(qrcode, "png", qrfile);

最佳答案

回答我自己的问题:

String hex = "#ffffff00";

//-16711681 in ARGB int, for example used in Google's zxing library for colored qrcodes
System.out.println(toARGB(hex));

public static int toARGB(String nm) {
Long intval = Long.decode(nm);
long i = intval.intValue();

int a = (int) ((i >> 24) & 0xFF);
int r = (int) ((i >> 16) & 0xFF);
int g = (int) ((i >> 8) & 0xFF);
int b = (int) (i & 0xFF);

return ((a & 0xFF) << 24) |
((b & 0xFF) << 16) |
((g & 0xFF) << 8) |
((r & 0xFF) << 0);
}

关于java - 如何使用 HTML 颜色通过 zxing 编写二维码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57022664/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com