- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章详解ZXing-core生成二维码的方法并解析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
二维码无处不在,扫一扫有礼品哦,现在二维码这么流行,想必大家不是很清楚二维码是怎么生成的吧,现在小编通过给大家分享本文帮助大家学习二维码生成的方法.
其实主要是利用goggle发布的jar来使用的此功能.
1、二维码的生成 。
将Zxing-core.jar 包加入到classpath下.
二维码的生成需要借助MatrixToImageWriter类,该类是由Google提供的,可以将该类拷贝到源码中,这里我将该类的源码贴上,可以直接使用.
直接可以生成二维码的代码 。
1
2
3
4
5
6
7
8
9
10
11
|
public
void
test1()
throws
Exception{
String content =
"www.baidu.com"
;
String path =
"d://"
;
MultiFormatWriter multiFormatWriter =
new
MultiFormatWriter();
//Zxing是Google提供的关于条码
Map hints =
new
HashMap();
hints.put(EncodeHintType.CHARACTER_SET,
"UTF-8"
);
BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE,
400
,
400
,hints);
//这里是照片的大小
File file1 =
new
File(path,
"my.jpg"
);
MatrixToImageWriter.writeToFile(bitMatrix,
"jpg"
, file1);
System.out.println(
"执行完毕"
);
}
|
当我们能发现,这个代码拷贝上后发现有一个MatrixToImageWriter报错,所以需要我们去找,但是这里我贴出代码,可以直接使用.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import
com.google.zxing.common.BitMatrix;
import
javax.imageio.ImageIO;
import
java.io.File;
import
java.io.OutputStream;
import
java.io.IOException;
import
java.awt.image.BufferedImage;
public
final
class
MatrixToImageWriter {
private
static
final
int
BLACK =
0xFF000000
;
private
static
final
int
WHITE =
0xFFFFFFFF
;
private
MatrixToImageWriter() {}
public
static
BufferedImage toBufferedImage(BitMatrix matrix) {
int
width = matrix.getWidth();
int
height = matrix.getHeight();
BufferedImage image =
new
BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
for
(
int
x =
0
; x < width; x++) {
for
(
int
y =
0
; y < height; y++) {
image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE);
}
}
return
image;
}
public
static
void
writeToFile(BitMatrix matrix, String format, File file)
throws
IOException {
BufferedImage image = toBufferedImage(matrix);
if
(!ImageIO.write(image, format, file)) {
throw
new
IOException(
"Could not write an image of format "
+ format +
" to "
+ file);
}
}
public
static
void
writeToStream(BitMatrix matrix, String format, OutputStream stream)
throws
IOException {
BufferedImage image = toBufferedImage(matrix);
if
(!ImageIO.write(image, format, stream)) {
throw
new
IOException(
"Could not write an image of format "
+ format);
}
}
}
|
现在就可以d盘的根目录下载看生成的二维码了 。
二维码解析 。
和生成一样,我们需要一个辅助类( BufferedImageLuminanceSource),同样该类Google也提供了,这里我同样将该类的源码贴出来,可以直接拷贝使用个,省去查找的麻烦 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
BufferedImageLuminanceSource
import
com.google.zxing.LuminanceSource;
import
java.awt.Graphics2D;
import
java.awt.geom.AffineTransform;
import
java.awt.image.BufferedImage;
public
final
class
BufferedImageLuminanceSource
extends
LuminanceSource {
private
final
BufferedImage image;
private
final
int
left;
private
final
int
top;
public
BufferedImageLuminanceSource(BufferedImage image) {
this
(image,
0
,
0
, image.getWidth(), image.getHeight());
}
public
BufferedImageLuminanceSource(BufferedImage image,
int
left,
int
top,
int
width,
int
height) {
super
(width, height);
int
sourceWidth = image.getWidth();
int
sourceHeight = image.getHeight();
if
(left + width > sourceWidth || top + height > sourceHeight) {
throw
new
IllegalArgumentException(
"Crop rectangle does not fit within image data."
);
}
for
(
int
y = top; y < top + height; y++) {
for
(
int
x = left; x < left + width; x++) {
if
((image.getRGB(x, y) &
0xFF000000
) ==
0
) {
image.setRGB(x, y,
0xFFFFFFFF
);
// = white
}
}
}
this
.image =
new
BufferedImage(sourceWidth, sourceHeight, BufferedImage.TYPE_BYTE_GRAY);
this
.image.getGraphics().drawImage(image,
0
,
0
,
null
);
this
.left = left;
this
.top = top;
}
@Override
public
byte
[] getRow(
int
y,
byte
[] row) {
if
(y <
0
|| y >= getHeight()) {
throw
new
IllegalArgumentException(
"Requested row is outside the image: "
+ y);
}
int
width = getWidth();
if
(row ==
null
|| row.length < width) {
row =
new
byte
[width];
}
image.getRaster().getDataElements(left, top + y, width,
1
, row);
return
row;
}
@Override
public
byte
[] getMatrix() {
int
width = getWidth();
int
height = getHeight();
int
area = width * height;
byte
[] matrix =
new
byte
[area];
image.getRaster().getDataElements(left, top, width, height, matrix);
return
matrix;
}
@Override
public
boolean
isCropSupported() {
return
true
;
}
@Override
public
LuminanceSource crop(
int
left,
int
top,
int
width,
int
height) {
return
new
BufferedImageLuminanceSource(image,
this
.left + left,
this
.top + top, width, height);
}
@Override
public
boolean
isRotateSupported() {
return
true
;
}
@Override
public
LuminanceSource rotateCounterClockwise() {
int
sourceWidth = image.getWidth();
int
sourceHeight = image.getHeight();
AffineTransform transform =
new
AffineTransform(
0.0
, -
1.0
,
1.0
,
0.0
,
0.0
, sourceWidth);
BufferedImage rotatedImage =
new
BufferedImage(sourceHeight, sourceWidth, BufferedImage.TYPE_BYTE_GRAY);
Graphics2D g = rotatedImage.createGraphics();
g.drawImage(image, transform,
null
);
g.dispose();
int
width = getWidth();
return
new
BufferedImageLuminanceSource(rotatedImage, top, sourceWidth - (left + width), getHeight(), width);
}
}
|
解析二维码的代码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
MultiFormatReader formatReader =
new
MultiFormatReader();
String filePath =
"图片的路径"
;
File file =
new
File(filePath);
BufferedImage image = ImageIO.read(file);;
LuminanceSource source =
new
BufferedImageLuminanceSource(image);
Binarizer binarizer =
new
HybridBinarizer(source);
BinaryBitmap binaryBitmap =
new
BinaryBitmap(binarizer);
Map hints =
new
HashMap();
hints.put(EncodeHintType.CHARACTER_SET,
"UTF-8"
);
Result result = formatReader.decode(binaryBitmap,hints);
System.out.println(
"result = "
+ result.toString());
System.out.println(
"resultFormat = "
+ result.getBarcodeFormat());
System.out.println(
"resultText = "
+ result.getText());
tch (Exception e) {
e.printStackTrace();
|
现在这样可以在控制台看到二维码的内容.
以上所述是小编给大家介绍的ZXing-core生成二维码的方法并解析的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。
最后此篇关于详解ZXing-core生成二维码的方法并解析的文章就讲到这里了,如果你想了解更多关于详解ZXing-core生成二维码的方法并解析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在尝试使用以下 keytool 命令为我的应用程序生成 keystore : keytool -genkey -alias tomcat -keystore tomcat.keystore -ke
编辑:在西里尔正确解决问题后,我注意到只需将生成轴的函数放在用于生成标签的函数下面就可以解决问题。 我几乎读完了 O'Reilly 书中关于 D3.js 的教程,并在倒数第二页上制作了散点图,但是当添
虽然使用 GraphiQL 效果很好,但我的老板要求我实现一个用户界面,用户可以在其中通过 UI 元素(例如复选框、映射关系)检查呈现给他们的元素并获取数据,这样做将为该人生成 graphql 输入,
我尝试在 Netbean 6.8 中使用 ws-import 生成 Java 类。我想重新生成 jax-ws,因为在 ebay.api.paypalapi 包中发现了一个错误(我认为该错误是由于 Pa
我有一个 perl 脚本,它获取系统日期并将该日期写入文件名。 系统日期被分配给 TRH1 变量,然后它被设置为一个文件名。 $TRH1 =`date + %Y%m%d%H%M`; print "TR
我是 Haskell 的新手,需要帮助。我正在尝试构建一种必须具有某种唯一性的新数据类型,因此我决定使用 UUID 作为唯一标识符: data MyType = MyType { uuid ::
我制作了一个脚本,它可以根据 Mysql 数据库中的一些表生成 XML。 该脚本在 PHP 中运行。 public function getRawMaterials($apiKey, $format
所以这是我的项目中的一个问题。 In this task, we will use OpenSSL to generate digital signatures. Please prepare a f
我在 SAS LIFEREG 中有一个加速故障时间模型,我想绘制它。因为 SAS 在绘图方面非常糟糕,我想实际重新生成 R 中曲线的数据并将它们绘制在那里。 SAS 提出了一个尺度(在指数分布固定为
我正在为 Django 后端制作一个样板,并且我需要能够使它到达下一个下载它的人显然无法访问我的 secret key 的地方,或者拥有不同的 key 。我一直在研究一些选项,并在这个过程中进行了实验
我正在创建一个生成采购订单的应用程序。我可以根据用户输入的详细信息创建文本文件。我想生成一个看起来比普通文本文件好得多的 Excel。有没有可以在我的应用程序中使用的开源库? 最佳答案 目前还没有任何
我正在尝试使用 ScalaCheck 为 BST 创建一个 Gen,但是当我调用 .sample 方法时,它给了我 java.lang.NullPointerException。我哪里错了? seal
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我尝试编写一些代码,例如(在verilog中): parameter N = 128; if (encoder_in[0] == 1) begin 23 binary_out = 1;
我正忙于在 Grails 项目中进行从 MySQL 到 Postgres 的相当复杂的数据迁移。 我正在使用 GORM 在 PostGres 中生成模式,然后执行 MySQL -> mysqldump
如何使用纯 XSLT 生成 UUID?基本上是寻找一种使用 XSLT 创建独特序列的方法。该序列可以是任意长度。 我正在使用 XSLT 2.0。 最佳答案 这是一个good example 。基本上,
我尝试安装.app文件,但是当我安装并单击“同步”(在iTunes中)时,我开始在设备上开始安装,然后停止,这是一个问题,我不知道在哪里,但我看到了我无法解决的奇怪的事情: 最佳答案 似乎您没有在Xc
自从我生成 JavaDocs 以来已经有一段时间了,我确信这些选项在过去 10 年左右的时间里已经得到了改进。 我能否得到一些有关生成器的建议,该生成器将输出类似于 .Net 文档结构的 JavaDo
我想学习如何生成 PDF,我不想使用任何第三方工具,我想自己用代码创建它。到目前为止,我所看到的唯一示例是我通过在第 3 方 dll 上打开反射器查看的代码,以查看发生了什么。不幸的是,到目前为止我看
我正在从 Epplus 库生成 excel 条形图。 这是我成功生成的。 我的 table 是这样的 Mumbai Delhi Financial D
我是一名优秀的程序员,十分优秀!