- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 Apex3,我已经能够关注 the documentation 的大部分内容没问题,但是当涉及到图像时,事情变得非常奇怪(缺乏示例 + 在操作方法上缺乏一致性)。
首先,我尝试使用以下命令尝试通过 JPEG 和 0 质量压缩的位图字节 [] 数组压缩的天真方法:
ESC V n1 n2数据
结果不太好。
然后我发现有一个 apex3 的 android 库接受一个位图并打算打印它但是它不起作用只是打印像这样的奇怪符号:
我尝试使用 JD gui 解码 jar 源代码,他们似乎对位图字节做了一些工作,这是他们的代码(建议代码,如 addToDoc(m_Document, ESC + "B"); 只需将代码放入一个 ByteArrayOutputStream 数据),(反编译 source from here ):
public void writeImage(Bitmap imageObject, int printHeadWidth)
throws IllegalArgumentException
{
if (imageObject == null) {
throw new IllegalArgumentException("Parameter 'imageObject' was null.");
}
if (printHeadWidth < 1) {
throw new IllegalArgumentException("Parameter 'printHeadWidth' must be greater than 0.");
}
int height = imageObject.getHeight();
int width = imageObject.getWidth();
byte blanklineCount = 0;
byte[] dataline = new byte[printHeadWidth + 7 >> 3];
int[] imageData = new int[height * width];
imageObject.getPixels(imageData, 0, width, 0, 0, width, height);
addToDoc(m_Document, ESC + "B");
for (int row = 0; row < height; row++)
{
boolean blankLine = true;
for (int index = 0; index < width; index += 8)
{
byte currentByte = 0;
int offset = row * width + index;
if (index >= printHeadWidth) {
break;
}
int value = index + 0 < width ? imageData[(offset + 0)] & 0xFFFFFF : 16777215;
boolean set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? -128 : 0));
value = index + 1 < width ? imageData[(offset + 1)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 64 : 0));
value = index + 2 < width ? imageData[(offset + 2)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 32 : 0));
value = index + 3 < width ? imageData[(offset + 3)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 16 : 0));
value = index + 4 < width ? imageData[(offset + 4)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 8 : 0));
value = index + 5 < width ? imageData[(offset + 5)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 4 : 0));
value = index + 6 < width ? imageData[(offset + 6)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 2 : 0));
value = index + 7 < width ? imageData[(offset + 7)] & 0xFFFFFF : 16777215;
set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
currentByte = (byte)(currentByte | (set ? 1 : 0));
dataline[(index >> 3)] = currentByte;
blankLine &= currentByte == 0;
}
if (!blankLine)
{
if (blanklineCount > 0)
{
addToDoc(m_Document, "A");
addToDoc(m_Document, blanklineCount);
blanklineCount = 0;
}
addToDoc(m_Document, compressGraphicLine(dataline));
}
else
{
blanklineCount = (byte)(blanklineCount + 1);
if (blanklineCount == 255)
{
addToDoc(m_Document, "A");
addToDoc(m_Document, blanklineCount);
blanklineCount = 0;
}
}
}
if (blanklineCount > 0)
{
addToDoc(m_Document, "A");
addToDoc(m_Document, blanklineCount);
blanklineCount = 0;
}
addToDoc(m_Document, ESC + "E");
}
private byte[] compressGraphicLine(byte[] dataline)
{
byte count = 0;
byte currentByte = 0;
ByteArrayOutputStream rleString = new ByteArrayOutputStream(128);
addToDoc(rleString, "G");
for (int index = 0; index < dataline.length; index++) {
if (count == 0)
{
currentByte = dataline[index];
addToDoc(rleString, currentByte);
count = (byte)(count + 1);
}
else if ((count < 255) && (currentByte == dataline[index]))
{
count = (byte)(count + 1);
}
else
{
addToDoc(rleString, count);
count = 0;
currentByte = dataline[index];
addToDoc(rleString, currentByte);
count = (byte)(count + 1);
}
}
if (count > 0) {
addToDoc(rleString, count);
}
if (rleString.size() > dataline.length + 1)
{
rleString.reset();
addToDoc(rleString, "U");
for (int item = 0; item < dataline.length; item++) {
addToDoc(rleString, dataline[item]);
}
}
return rleString.toByteArray();
}
但我不明白为什么它不起作用。
最后我尝试使用 How can I print an image on a Bluetooth printer in Android? 使用与指南相同的算法,但仍然打印随机的奇怪符号。
最佳答案
与其浪费时间去反编译一些 apk,不如看看官方的 SDK?在制造商网页上 Downloads & Drivers有一个链接到 Java SDK其中包括源 Sample.java
。在源代码中创建了一个 BufferedImage
,所以我猜(我没有这样的打印机)这将为您提供解决问题的切入点。他们很可能在同一页面上提供了 Android 演示的源代码 Printer Demo Source code for Android
编辑 好的。让我们总结一下:您有一张图像并想打印它。在示例 Sample.java 中涵盖了这种情况
BufferedImage newImage = new BufferedImage(1024, 512, BufferedImage.TYPE_4BYTE_ABGR);
// some lines and rectangles are drawn in the image
...
// the image is printed, following the SDK javadoc for DocumentLP.writeImage
// "This will cause the image specified to be printed. Images will be expanded to occupy
// the entire width of the printer, so the correct current width of the printer must be
// specified. Images that are too wide will be cropped, and images that are too narrow
// will be padded on the right."
testDoc.writeImage(newImage, m_PrinterWidth);
对我来说,你唯一需要做的事情:
编辑2伪代码 fragment
// taken from SDK javadoc
DocumentLP docLP;
docLP = new DocumentLP("$");
// own code
BufferedInputStream bis = new BufferedInputStream(--from your image--);
BufferedImage bufImage = ImageIO.read(bis);
// have a look into Sample.java for the expected value of m_PrinterWidth
testDoc.writeImage(bufImage, m_PrinterWidth);
编辑 3 Android 代码 fragment (取自 datamax o´neil Android SDK
提供的 DO_AndroidSDKDemo_MainActivity.javaFile file = new File(selectedPath);
byte[] readBuffer = new byte[(int)file.length()];
InputStream inputStream= new BufferedInputStream(new FileInputStream(file));
inputStream.read(readBuffer);
inputStream.close();
fileData = readBuffer;
Bitmap m_imageObject = BitmapFactory.decodeByteArray(fileData, 0, fileData.length);
documentLP.clear();
ocumentLP.writeImage(m_imageObject, m_printHeadWidth);
关于java - 打印 POS/ESC Apex3 图像 S.O.S,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19918941/
在使用 requests 库中的状态代码时,我遇到了一些奇怪的事情。每个 HTTP 状态代码都有一个常量,有些具有别名(例如,包括 200 的复选标记): url = 'https://httpbin
这是我得到的代码,但我不知道这两行是什么意思: o[arr[i]] = o[arr[i]] || {}; o = o[arr[i]]; 完整代码: var GLOBAL={}; GLOBAL.name
所以这个问题的答案What is the difference between Θ(n) and O(n)? 指出“基本上,当我们说算法是 O(n) 时,它也是 O(n2)、O(n1000000)、O
这是一个快速的想法;有人会说 O(∞) 实际上是 O(1) 吗? 我的意思是它不依赖于输入大小? 所以在某种程度上它是恒定的,尽管它是无限的。 或者是唯一“正确”的表达方式 O(∞)? 最佳答案 无穷
这是真的: log(A) + log(B) = log(A * B) [0] 这也是真的吗? O(log(A)) + O(log(B)) = O(log(A * B)) [1] 据我了解 O(f
我正在解决面试练习的问题,但我似乎无法找出以下问题的时间和空间复杂度的答案: Given two sorted Linked Lists, merge them into a third list i
我了解 Big-Oh 表示法。但是我该如何解释 O(O(f(n))) 是什么意思呢?是指增长率的增长率吗? 最佳答案 x = O(n)基本上意味着 x <= kn对于一些常量 k . 因此 x = O
我正在编写一个函数,该函数需要一个对象和一个投影来了解它必须在哪个字段上工作。 我想知道是否应该使用这样的字符串: const o = { a: 'Hello There' }; funct
直觉上,我认为这三个表达式是等价的。 例如,如果一个算法在 O(nlogn) + O(n) 或 O(nlogn + n) 中运行(我很困惑),我可以假设这是一个O(nlogn) 算法? 什么是真相?
根据 O'Reilly 的 Python in a Nutshell 中的 Alex Martelli,复杂度类 O(n) + O(n) = O(n)。所以我相信。但是我很困惑。他解释说:“N 的两个
O(n^2)有什么区别和 O(n.log(n)) ? 最佳答案 n^2 的复杂性增长得更快。 关于big-o - 大 O 符号 : differences between O(n^2) and O(n
每当我收到来自 MS outlook 的电子邮件时,我都会收到此标记 & nbsp ; (没有空格)哪个显示为?在 <>. 当我将其更改为 ISO-8859-1 时,浏览器页面字符集编码为 UTF-8
我很难理解 Algorithms by S. Dasgupta, C.H. Papadimitriou, and U.V. Vazirani - page 24 中的以下陈述它们将 O(n) 的总和表
我在面试蛋糕上练习了一些问题,并在问题 2给出的解决方案使用两个单独的 for 循环(非嵌套),解决方案提供者声称他/她在 O(n) 时间内解决了它。据我了解,这将是 O(2n) 时间。是我想错了吗,
关于 Java 语法的幼稚问题。什么 T accept(ObjectVisitorEx visitor); 是什么意思? C# 的等价物是什么? 最佳答案 在 C# 中它可能是: O Accept(
假设我有一个长度为 n 的数组,我使用时间为 nlogn 的排序算法对它进行了排序。得到这个排序后的数组后,我遍历它以找到任何具有线性时间的重复元素。我的理解是,由于操作是分开发生的,所以时间是 O(
总和 O(1)+O(2)+ .... +O(n) 的计算结果是什么? 我在某处看到它的解决方案: O(n(n+1) / 2) = O(n^2) 但我对此并不满意,因为 O(1) = O(2) = co
这个问题在这里已经有了答案: 11 年前关闭。 Possible Duplicate: Plain english explanation of Big O 我想这可能是类里面教的东西,但作为一个自学
假设我有两种算法: for (int i = 0; i 2)更长的时间给定的一些n - 其中n这种情况的发生实际上取决于所涉及的算法 - 对于您的具体示例, n 2)分别时间,您可能会看到: Θ(n)
这个问题在这里已经有了答案: Example of a factorial time algorithm O( n! ) (4 个回答) 6年前关闭。 我见过表示为 O(X!) 的 big-o 示例但
我是一名优秀的程序员,十分优秀!