使用 zxing 创建彩色二维码
我正在使用 google 开源 java zxing 创建者:http://code.google.com/p/zxing /
创建二维码。我已经准备好了一切并正在工作(我正在使用 Coldfusion 加载 java 文件并将图像写入浏览器。)
我现在想要的是将黑色 QR 颜色更改为其他颜色。有一个简单的方法可以做到这一点吗?
我需要编辑编码器 java 文件的反编译版本吗?或者有什么方法可以将颜色参数添加到编码例程中?
谢谢 肖恩
I am using the google open source java zxing creator: http://code.google.com/p/zxing/
to create QR codes. I have everything in place and working (I'm loading the java files using coldfusion and writing the image to the browser.)
What I want now is to change the black QR colour to something else. Is there an easy way of doing this?
Would I need to edit a decompiled version of the encoder java file? Or is there a way I could add a color argument to the encoding routine?
Thanks
Shaun
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在
MatrixToImageWriter.java
(我假设您正在使用)中,在javase/
下更改常量BLACK
。它是 ARGB 格式的int
,当前值为0xFF000000
。将 alpha 值保留为0xFF
。更改其余部分以十六进制格式描述您的颜色。如果您愿意,您可以对WHITE
执行相同的操作。In
MatrixToImageWriter.java
(which I assume you are using), underjavase/
change the constantBLACK
. It is anint
in ARGB format and currently has value0xFF000000
. Leave the alpha value at0xFF
. Change the rest to describe your color in hex format. You can do the same withWHITE
if you like.试试这个::
Try this ::
我假设您正在生成如下所示的二维码:
您的输出尺寸将基于您的代码。将尺寸设置得尽可能低。这样你就可以找到你想要改变颜色的二维码的确切位置。
比从位图中获取像素:
以及您想要的颜色像素:
将每个设备的 dp 转换为 px:
最后将彩色像素设置为位图:
这就是我解决问题的方法。我希望这会帮助你。
I assume that you're generating qr code like below:
Your output's dimension will be based on your code. Set your dimension as possible as low. So you can find exact positions of qr code place you want to change color.
Than get your pixels from bitmap with:
And color pixels you want:
Convert dp to px for every devices:
Finaly set your colored pixels to bitmap:
This's how i solved the problem. I hope this'll help you.
我希望您使用此代码来打印您的二维码图像:
您可以指定您自己的配置文件(MatrixToImageConfig)并将其传递给 MatrixToImageWriter,如下所示:
您可以在 onColor 和 offColor 中传递颜色,它们是整数。将颜色代码附加到 onColor 和 offColor 变量中的“0xFF”,然后就可以开始了。
干杯。
I hope you are using this code to print your qr code image :
You can specify your own config file (MatrixToImageConfig) and pass it along to MatrixToImageWriter like this :
You can pass your colors in onColor and offColor, which are integers. Append your color code to "0xFF" in onColor and offColor variable and you are good to go.
Cheers.