- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Vue+Java+Base64实现条码解析的示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
前端部分(Vue + Vant) 。
1
2
3
|
import Vue from
'vue'
import { Uploader } from
'vant'
Vue.use(Uploader);
|
1
2
3
4
5
|
<
van-uploader
>
<
van-button
icon
=
"plus"
type
=
"primary"
:after-read
=
"afterRead"
>
上传文件(识别条码)
</
van-button
>
</
van-uploader
>
|
after-read
回调函数,获取到对应的 file
对象。
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
|
afterRead(file) {
var
self =
this
;
//调用上传回调函数 - upload
this
.upLoad(
this
.$baseUrl +
"upload/uploadParsing"
, file,
function
(response) {
if
( response.msg.length >0){
console.log(response.msg)
}
else
{
Toast.fail(
'识别失败,请重新上传条码!'
,3500)
}
});
},
upLoad(url, file, func) {
var
fileBase64 =
''
// 创建Canvas对象(画布)
debugger
let canvas = document.createElement(
"canvas"
);
// 获取对应的CanvasRenderingContext2D对象(画笔)
let context = canvas.getContext(
"2d"
);
// 创建新的图片对象
let img =
new
Image();
// 指定图片的DataURL(图片的base64编码数据)
img.src = file.content;
// 监听浏览器加载图片完成,然后进行进行绘制
img.onload = () => {
// 指定canvas画布大小,该大小为最后生成图片的大小
canvas.width = 400;
canvas.height = 300;
/* drawImage画布绘制的方法。(0,0)表示以Canvas画布左上角为起点,400,300是将图片按给定的像素进行缩小。
如果不指定缩小的像素图片将以图片原始大小进行绘制,图片像素如果大于画布将会从左上角开始按画布大小部分绘制图片,最后的图片就是张局部图。*/
context.drawImage(img, 0, 0, 400, 300);
// 将绘制完成的图片重新转化为base64编码,file.file.type为图片类型,0.92为默认压缩质量
file.content = canvas.toDataURL(file.file.type, 0.92);
fileBase64 = file.content
// 最后将base64编码的图片保存到数组中,留待上传。43 console.log(fileBase64)
//查询字典值
this
.$axios.post(url,{
'fileBase64Code'
:fileBase64})
.then(
function
(response) {
func(response.data);
}.bind(
this
))
.
catch
(
function
(error) {
Toast.file(
"识别失败,请重新上传条码!"
,3500);
})
};
},
|
后端部分(Java ) 。
添加 zxing + base64 依赖 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!-- 解析二维码 -->
<
dependency
>
<
groupId
>com.google.zxing</
groupId
>
<
artifactId
>core</
artifactId
>
<
version
>3.3.3</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.zxing</
groupId
>
<
artifactId
>javase</
artifactId
>
<
version
>3.3.3</
version
>
</
dependency
>
<!-- Base64 -->
<!-- https://mvnrepository.com/artifact/net.iharder/base64 -->
<
dependency
>
<
groupId
>net.iharder</
groupId
>
<
artifactId
>base64</
artifactId
>
<
version
>2.3.8</
version
>
</
dependency
>
|
Controller 。
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
|
@ResponseBody
@RequestMapping
(value =
"/uploadParsing"
, method = RequestMethod.POST)
public
ResponseMessage uploadParsing(
@RequestBody
imgUploadMessage uploadFile){
ResponseMessage rm=
new
ResponseMessage();
//解析Base64编码之后 读取条
try
{
String imgStr = uploadFile.getFileBase64Code().substring(uploadFile.getFileBase64Code().indexOf(
","
)+
1
);
Decoder decoder = Base64.getDecoder();
byte
[] base = decoder.decode(imgStr);
for
(
int
i =
0
; i < base.length; ++i) {
if
(base[i] <
0
) {
base[i] +=
256
;
}
}
ByteArrayInputStream byteArrayInputStream =
new
ByteArrayInputStream(base);
BufferedImage read = ImageIO.read( byteArrayInputStream);
if
(
null
==read) {
rm.setMsg(
"解析失败"
);
rm.setSuccess(
false
);
return
rm;
}
BufferedImageLuminanceSource source =
new
BufferedImageLuminanceSource(read);
BinaryBitmap bitmap =
new
BinaryBitmap(
new
HybridBinarizer(source));
Map<DecodeHintType,Object> hints=
new
HashMap<>();
hints.put(DecodeHintType.CHARACTER_SET,
"GBK"
);
hints.put(DecodeHintType.PURE_BARCODE,Boolean.TRUE);
hints.put(DecodeHintType.TRY_HARDER,Boolean.TRUE);
Result decode =
new
MultiFormatReader().decode(bitmap, hints);
log.debug(
"条形码的内容是:"
+ decode.getText());
rm.setMsg(decode.getText());
}
catch
(Exception e) {
e.printStackTrace();
log.debug(
"解析失败:"
,e);
rm.setSuccess(
false
);
rm.setMsg(
"解析失败"
);
}
return
rm;
}
|
以上就是Vue+Java+Base64实现条码解析的示例的详细内容,更多关于Vue+Java+Base64实现条码解析的资料请关注我其它相关文章! 。
原文链接:https://www.cnblogs.com/bingziweb/p/13713505.html 。
最后此篇关于Vue+Java+Base64实现条码解析的示例的文章就讲到这里了,如果你想了解更多关于Vue+Java+Base64实现条码解析的示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我在将过滤器从 vue 1 迁移到 vue 2 时遇到问题,我在这里完全创建了我需要的东西(突出显示与输入文本匹配的文本): Vue.component('demo-grid', { templa
我有一个在 vue 组件外部运行的函数。我想要将它返回的数据传递给vue组件中的数据。 function example(){ var item = 'item'
我正在尝试安装一个 Vue 插件,以便我可以使用选项管理一些 API 调用。我有一个 stocks.js 文件,我想从中进行 API 调用。 当我执行以下操作时,出现'Vue is defined b
如何从指令访问 Vue 实例? 我有这个 HTML 和这个脚本 var app = new Vue({ el: '#vueApp', data: { myData:
如何在 .vue 文件中使用 Vue.set() 和 Vue.use()?我正在使用 vue-cli 搭建我的项目,我需要使用 Vue.use(VeeValidate) 进行验证。我也想使用类似下面的
从 vue-property-decorator 和 vue 导入 Vue 之间有什么区别和用例?据我所知,在使用 @Component 装饰器定义自定义组件时,我始终需要从 vue-property
有没有办法使用 yarn serve(可能使用 webpack/vuetify-loader)在本地 Vuetify 应用程序的本地 npm 依赖项上发生热重载? 商业案例 我们有一些通用的 Vuet
我有一个在某些未知情况下不可靠的插槽的奇怪错误。 成分 有3个层次组件。 孙子 (headlessTable),它提供一个名为 arrayValue 的插槽. 子项 (collapsableCard)
我是 Vue 本地新手,我也遇到了一个问题,can I use the Vue component inside a Vue native component such as Vue-chart an
Vue.delete 的替代方案是什么?在 Vue 3 的新 Reactivity API 中? 最佳答案 Vue.delete和 Vue.set在 Vue 3 中不需要。通过使用代理的新 react
我是 Vue 的新手,正在尝试学习如何使用它。 我想我在尝试安装一个新的 Vue 应用程序时被绊倒了。 这是我可以开始工作的内容: const vm = new Vue({}) 从那里我可以安装
我使用boots-vue。我从文档https://bootstrap-vue.js.org/docs/components/table/#table-body-transition-support中举
我真的只是想为我的图书馆建立一个 jest+vue 的框架,并迅速得到这个错误。 我知道这个结构不是通常的笑话结构,我在这里尝试用一个辅助控件来描述一个测试。 这是我的test的内容文件夹:array
我正在尝试使用基于 examples 的 vue-router , 如 let routes = [ { path: '/', component: MainComponent }, ];
我有一个想要通过简单的 v-model 功能发布到 NPM 的组件。 因此,如果它能够在 vuejs 2/3 上互换运行那就更理想了。 我可以通过将组件设置为发出 input 和 update:mod
我正在尝试在 bootstrap-vue 表中创建一个插槽,以使用自定义组件呈现任何 bool 值。 所以我有一个简单的表格 现在,如果我想以特定方式渲染单个列,我必须使用插槽 它有
Vue Router 在主 Vue 实例之前加载,但要加载该 Router,我应该准备一些信息,然后将它们作为属性传递给此 Route。在此示例中,它是从主 Vue 实例传递到主屏幕的 current
我有一个想要通过简单的 v-model 功能发布到 NPM 的组件。 因此,如果它能够在 vuejs 2/3 上互换运行那就更理想了。 我可以通过将组件设置为发出 input 和 update:mod
我找到了一个关于如何使用 Vue 路由器的很好的例子。这是 app.js 文件: // Telling Vue to use the router Vue.use(VueRouter) // Init
我没有完整的 vue 应用程序,所以我使用 custom elements替换一些应该用 vue 处理的元素。 我只想使用 vue multiselect plugin在 html 文件中。 所以我尝
我是一名优秀的程序员,十分优秀!