Android打印图像使用BIXOLON SPP-R300

时间:2012-10-19 14:47:26

标签: android bluetooth android-2.3-gingerbread bixolon-printer

我正在开发通过蓝牙使用Bixolon SPP-R300移动打印机打印图像的应用程序。我的问题是我无法在整个纸张宽度上打印我的图像。打印机大大减小了尺寸,但在Android中保存的图片尺寸很好。我想在整个宽度上打印图像。我在用户手册中查看了Bixolon for android但没有帮助。也在互联网上没有关于它的信息。所以,我不知道该怎么做。这是我的项目的代码片段,它打印图像:

mBxlService = new BxlService(); 
mBxlService.Connect();
if (mBxlService.GetStatus() == BxlService.BXL_SUCCESS) {
    returnValue = mBxlService.PrintImage(mypath.getPath(), 
                                         384, 
                                         BxlService.BXL_ALIGNMENT_CENTER, 
                                         40);
    if (returnValue == BxlService.BXL_SUCCESS) {
        returnValue = mBxlService.LineFeed(2);                          
    } 
}

在用户手册中,写入“设置为值384,图像适合全尺寸纸张”没有帮助。 这是一张打印的图片。

 also I attached,printed image 这是手动的 enter image description here

1 个答案:

答案 0 :(得分:1)

您使用的打印机每行有576个点。 SPP200有384个点。