我有一款喷码机,需要将图片导入打出,但是图片需要的是点阵图格式,这个如何设计?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我有一款喷码机,需要将图片导入打出,但是图片需要的是点阵图格式,这个如何设计?相关的知识,希望对你有一定的参考价值。
说是16*16的点阵图什么来着,这个要怎么设计?
你是什么品牌的喷码机,如果是大屏幕操作界面的喷码机,可以直接编辑图形喷码,如果是普通的小屏幕喷码机,就需要在电脑上编辑后传输到喷码机里,如果是老式喷码机,就要到供应商处考芯片了!具体操作方式,可以咨询上海银玛标识公司。追问这样子的喷码机是什么类型的,还有怎么样才能导入条形码?
这是键盘操作的高解析喷码机,如果没有USB接口,或计算机接口,就导不进去了
追问已经连接并且导进去了,但是机器上面并没有显示,不知道是不是图像大小不对还是文件格式不对?还是说还要在机器上进一步操作?
追答格式不对
参考技术A 小字符的机器,大多是将图片分成点,然后再喷码机上,一个一个点上去的,特麻烦追问具体怎么操作呢,我要导入的是条形码。
参考技术B 咱们现在用的图片一般都是位图,这就是点阵图。16*16是指的尺寸或者像素点。如果是像素点的话,就是需要256色的图片。
你可以通过Photoshop之类的制图软件进行转换,将你所制作的图片导入Photoshop后,选择文件>导出为Web使用格式。
在这个选项下,右边选项中会出现颜色的选择,选择为256色后输出保存为GIF或PNG、JPG格式,应该就可以打印了。本回答被提问者和网友采纳 参考技术C 你好 ,这个我可以教你。你需要 打印什么图片啊 加我QQ可以细聊,私信
vue项目中图片预览旋转功能
最近项目中需要在图片预览时,可以旋转图片预览,在网上找了下,发现有一款功能强大的图片组件:viewerjs. git-hup: https://github.com/fengyuanchen/viewerjs
在git上看了下,有很多功能,不过我的项目只需要做个图片旋转功能,引入这个组件感觉大材小用了,于是自己写了个简易版的,因为我们只是查看而已,没什么要求.如果你需要比较精确的图片旋转功能,可以使用这个viewerjs组件
功能描述: 一个图片预览框,三个操作按钮: 上一张,下一张,旋转; 点击上一张下一张切换图片,点击旋转顺时针旋转图片,每次旋转90°,旋转后记住当前图片的旋转角度,点击上一张下一张再次切换回来时,需要旋转到上一次旋转的角度
代码:这是一个单独的组件,图片数据可以写在props中传值
<template> <div class="rotate_contanier"> <div class="header"> <span @click="handleImg(1)">上一张</span> <span @click="handleImg(2)">下一张</span> <span @click="rotate">旋转</span> </div> <div class="picture_contaner"> <div class="img_box" ref="rotate"> <img :src="fileInfo.fileUrl" > </div> </div> </div> </template> <script> export default { props: { }, data() { return { pictureList: [ {fileUrl: ‘http://mp.ofweek.com/Upload/News/Img/member645/201711/17170046839337.jpg‘}, {fileUrl: ‘http://img2.imgtn.bdimg.com/it/u=1239081181,1433383585&fm=26&gp=0.jpg‘}, {fileUrl: ‘http://img1.imgtn.bdimg.com/it/u=3502008475,4132115356&fm=26&gp=0.jpg‘}, {fileUrl: ‘http://img12.360buyimg.com/n5/s450x450_jfs/t9952/98/2269407420/279171/6137fe2f/59f28b2bN6959e086.jpg‘}, {fileUrl: ‘http://img2.imgtn.bdimg.com/it/u=2681505513,370839281&fm=26&gp=0.jpg‘}, {fileUrl: ‘http://img2.imgtn.bdimg.com/it/u=1153377230,3978893548&fm=26&gp=0.jpg‘} ], fileInfo: { fileUrl: ‘‘, deg: 0 }, currentPage: 0 } }, created() { // 设置图片初始旋转角度 this.pictureList.forEach(item => { item.deg = 0 }) this.fileInfo = this.pictureList[this.currentPage] }, mounted() { }, methods: { handleImg (type) { if (type === 1) { // 上一张 this.currentPage++ if (this.currentPage >= this.pictureList.length) { this.currentPage = 0 } } else { // 下一张 this.currentPage-- if (this.currentPage < 0) { this.currentPage = this.pictureList.length - 1 } } // 获取图片当前信息 this.fileInfo = this.pictureList[this.currentPage] this.$refs.rotate.style.transform = `rotate(${this.fileInfo.deg}deg)` }, // 旋转图片 rotate () { this.fileInfo = this.pictureList[this.currentPage] this.fileInfo.deg += 90 if (this.fileInfo.deg >= 360) { this.fileInfo.deg = 0 } this.$refs.rotate.style.transform = `rotate(${this.fileInfo.deg}deg)` } } } </script> <style> .rotate_contanier { display: flex; flex-direction: column; padding: 20px; background-color: #909399; width: 600px; height: 670px; } .header { height: 50px; margin-bottom: 10px; text-align: center; background-color: #fff; padding-top: 20px; } .header span { padding: 5px 8px; color: #fff; background-color: #409eff; border-radius: 4px; margin-right: 5px; cursor: pointer; } .picture_contaner { height: 600px; width: 100%; background-color: #fff; padding: 10px; box-sizing: border-box; } .picture_contaner .img_box { width: 100%; height: 100%; position: relative; } .picture_contaner .img_box img { max-width: 100%; max-height: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; } </style>
实现思路: 旋转的时候需要把容器长宽设为一致,也就是图片容器为正方形,这样旋转的时候旋转中心是对称的,不会出现图片超出容器的情况.
把图片放到一个容器里装起来,图片的宽高不能超过容器的宽高,居中布局,旋转的时候旋转图片容器,这样图片的长宽对旋转不会有影响
最终效果:
图片为百度图片,如有侵权,请联系删除
以上是关于我有一款喷码机,需要将图片导入打出,但是图片需要的是点阵图格式,这个如何设计?的主要内容,如果未能解决你的问题,请参考以下文章