Android bitmap转byte
逆转start协议输出
private static byte[] bitmap2byte(Bitmap bmp) throws Exception{
return bitmap2byte(bmp, null);
} private static byte[] bitmap2byte(Bitmap bmp, StarReverseConfig config) throws Exception{
Long s = System.currentTimeMillis();
String TAG = "Start Bitmap2byte";
int imgWidth = bmp.getWidth();
int imgHeight = bmp.getHeight(); //头 无配置
byte[] header = { 0x1b, 0x2a, 0x72, 0x42,
0x1b, 0x2a, 0x72, 0x61,
0x1b, 0x2a, 0x72, 0x41 }; //参数 配置 Set print speed : 1B1E74
//0x1b, 0x2a, 0x72, 0x6d, 0x6c, 0x24, 0x00 1b 2a 72 6d 6c n 00; Set raster left margin: n x 8
byte[] params = { };
//0x1b, 0x6c, 0x24 Set raster left margin
//0x1b, 0x1d, 0x41 n1 n2 Point absolute position
//尾 无配置
byte[] footer = { 0x1b, 0x2a, 0x72, 0x65, 0x31, 0x33, 0x00, 0x1b, 0x0c, 0x19, 0x00 };
//Storellet
//byte[] header = {0x1b, 0x2a, 0x72, 0x42, 0x1b, 0x1d, 0x03, 0x04, 0x00, 0x00, 0x17, 0x00, 0x1b, 0x1e, 0x45, 0x00, 0x1b, 0x06, 0x01, 0x00, 0x1b, 0x06, 0x01, 0x00, 0x1b, 0x1d, 0x03, 0x03, 0x00, 0x00, 0x1b, 0x2a, 0x72, 0x41, 0x1b, 0x2a, 0x72, 0x50, 0x30, 0x00, 0x1b, 0x2a, 0x72, 0x45, 0x31, 0x00, 0x1b, 0x2a, 0x72, 0x59, 0x30, 0x30, 0x33, 0x00 };
//Storellet
//byte[] footer = { 0x1b, 0x2a, 0x72, 0x59, 0x30, 0x30, 0x31, 0x00, 0x1b, 0x2a, 0x72, 0x65, 0x31, 0x33, 0x00, 0x1b, 0x0c, 0x19, 0x1b, 0x2a, 0x72, 0x46, 0x31, 0x33, 0x00, 0x1b, 0x0c, 0x00, 0x1b, 0x2a, 0x72, 0x42, 0x1b, 0x2a, 0x72, 0x42, 0x1b, 0x1d, 0x03, 0x04, 0x00, 0x00, 0x17, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; // 每行的字节数
int lineBytes = imgWidth / 8 + (imgWidth % 8 > 0 ? 1 : 0); //位移
int movePosition = config != null ? config.getSetLeftWidth() / 8 : 0; Log.i(TAG,"reverse lineBytes:" + lineBytes + ", imgWidth:" + imgWidth + ", imgHeight:" + imgHeight);
// 总字节长度
byte[] srcbytes = new byte[header.length + params.length + footer.length + imgHeight * (lineBytes + 3 + movePosition)]; int srclen = 0;
System.arraycopy(header, 0, srcbytes, srclen, header.length);
srclen = srclen + header.length;
System.arraycopy(params, 0, srcbytes, srclen, params.length);
srclen = srclen + params.length; byte n1byte = (byte)((lineBytes + movePosition) % 256);
byte n2byte = (byte)((lineBytes + movePosition) / 256);
byte tmp = 0;
byte p1 = 0x01, p0 = 0x00;
int xcnt = 3; // x方向上的计数 for (int y = 0; y < imgHeight; y++) {
byte[] lineBytesArray = new byte[lineBytes + 3 + movePosition];
//System.arraycopy(movePosition, 0, lineBytesArray, 0, movePosition.length);
lineBytesArray[0] = (byte)0x62;
lineBytesArray[1] = n1byte;
lineBytesArray[2] = n2byte; xcnt = 3; // x方向上的计数初始值
for (int i = 0; i < movePosition; i++) {
lineBytesArray[xcnt] = 0x00;
xcnt++;
} for (int x = 0; x < imgWidth; x++) {
if (x % 8 == 0 || x == imgWidth -1) {
if(x != 0){
lineBytesArray[xcnt] = tmp;
xcnt++;
}
tmp = 0;
}
int r = bmp.getPixel(x, y);
if (r == Color.BLACK) {
tmp += p1 * Math.pow(2, 7 - x % 8); //高位开始
} else {
tmp += p0 * Math.pow(2, 7 - x % 8);
}
}
System.arraycopy(lineBytesArray, 0, srcbytes, srclen, lineBytesArray.length);
srclen = srclen + lineBytesArray.length;
Thread.yield();
} System.arraycopy(footer, 0, srcbytes, srclen, footer.length);
Log.i(TAG,"reverse receipt is :" + srcbytes.length + ", all Time:" + (System.currentTimeMillis() - s));
return srcbytes;
}
Android bitmap转byte的更多相关文章
- Android Bitmap Drawable byte[] InputStream 相互转换方法
用android处理图片的时候,由于得到的资源不一样,所以经常要在各种格式中相互转化,以下介绍了 Bitmap Drawable byte[] InputStream 之间的转换方法: import ...
- Android中Bitmap, Drawable, Byte,ID之间的转化
Android中Bitmap, Drawable, Byte,ID之间的转化 1. Bitmap 转化为 byte ByteArrayOutputStream out = new ByteArray ...
- Android Bitmap与DrawAble与byte[]与InputStream之间的转换工具类【转】
package com.soai.imdemo; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; ...
- Android Drawable、Bitmap、byte[]之间的转换
转自http://blog.csdn.net/june5253/article/details/7826597 1.Bitmap-->Drawable Bitmap drawable2Bitma ...
- android开发之Bitmap 、byte[] 、 Drawable之间的相互转换
一.相关概念 1.Drawable就是一个可画的对象,其可能是一张位图(BitmapDrawable),也可能是一个图形(ShapeDrawable),还有可能是一个图层(LayerDrawable) ...
- [翻译]开发文档:android Bitmap的高效使用
内容概述 本文内容来自开发文档"Traning > Displaying Bitmaps Efficiently",包括大尺寸Bitmap的高效加载,图片的异步加载和数据缓存 ...
- Android Bitmap 和 ByteArray的互相转换
Android Bitmap 和 ByteArray的互相转换 移动平台图像处理,需要将图像传给native处理,如何传递?将bitmap转换成一个 byte[] 方便传递也方便cpp代码直接处理图像 ...
- Android-Drawable、Bitmap、byte[]、资源文件相互转换
我们在Android的开发中,经常可以遇到图片的处理,当中,有很多是 Bitmap.Drawable.byte[]和资源文件它们直接相互转换. 今天就此总结一下: 1.资源文件转为Drawable 2 ...
- android Bitmap类方法属性 详细说明
(转:http://blog.csdn.net/ymangu666/article/details/37729109) 1. BitMap类public void recycle()——回收位图占用 ...
随机推荐
- html5 自带全屏API调用方法
function FullScreen(){ var el = $('html')[0];//要全屏的元素,如果要全页面全屏,建议使用html节点而不是body节点 var isFullscreen= ...
- python 多进程——使用进程池,多进程消费的数据)是一个队列的时候,他会自动去队列里依次取数据
我的mac 4核,因此每次执行的时候同时开启4个线程处理: # coding: utf-8 import time from multiprocessing import Pool def long_ ...
- Halcon12新特性之VS可视化调试插件
当我们用VC\C#调试halcon代码的时候,通常会遇到一个头痛的问题,我们无法看到halcon变量的调试信息 如下图:什么鬼...什么鬼 比如我们想看一个double数值变量,我们需要 doub ...
- 关于父类私有属性在子类构造函数中super调用的解释
package test; public class Car { private int carMoney; //汽车租金 private String carName; //汽车名字 private ...
- 『转』Bitdefender Internet Security 2013 – 免费1年
活动中可以选择获取Bitdefender Internet Security 2013+Bitdefender Mobile Security (手机版)各一年激活码申请地址:https://part ...
- 『转』谷歌发布Windows版Chrome App Launcher
据国外媒体报道,谷歌发布了Windows版Chrome App Launcher,Windows用户现在因此能够使用谷歌的许多网络应用,如Chrome浏览器.Gmail.Google Drive和Ch ...
- navicat链接mysql 8 出现 2015 authentication plugin 'caching_sha2_password' 错误
使用mysql自带的 MySQL 8.0 Command Line Client - Unicode 登录, 然后使用命令: alter user 'root'@'localhost' identif ...
- How to convert a QString to unicode object in python 2?
How to convert a QString to unicode object in python 2? I had this problem to solve, and I tried to ...
- rancher下的kubernetes之三:在linux上安装kubectl工具
本章是<rancher下的kubernetes>系列之三,前面两章我们完成了racher下搭建kubernetes环境的实战,本章我们来安装kubectl工具: 系列文章地址 <ra ...
- 为什么要使用索引?-Innodb与Myisam引擎的区别与应用场景
Innodb与Myisam引擎的区别与应用场景 http://www.cnblogs.com/changna1314/p/6878900.html https://www.cnblogs.com/ho ...