printData

2022-06-21 16:08 更新

设置打印数据

printData({params}, callback(ret, err))

params

data:

  • 类型:数组
  • 描述:(必输项)打印数据。

[{
    rowtype: 'printText',//打印文字,文字宽度满一行自动换行排版,不满一整行不打印除非强制换行
    text : ''    //要打印的文字字符串
},{
    rowtype: 'printOriginalText',   //文字按矢量文字宽度原样输出,即每个字符不等宽
    text : ''    //要打印的文字字符串
},{
    rowtype: 'printTextWithFont',   //打印指定字体的文本,字体设置只对本次有效
    text : '',    //要打印的文字字符串
    typeface:'', //字体名称(目前只支持"gh"字体)
    fontsize:12 //字体大小
},{
    rowtype: 'printColumnsText',   //打印表格的一行,可以指定列宽、对齐方式
    colsTextArr : ['名稱','數量','單價','金額'],  //各列文本字符串数组
    colsWidthArr : [10, 6, 6, 8], //各列宽度数组(以英文字符计算, 每个中文字符占两个英文字符, 每个宽度大于0)
    colsAlign : [0, 2, 2, 2] //各列对齐方式(0居左, 1居中, 2居右)
    //备注: 三个参数的数组长度应该一致, 如果colsText[i]的宽度大于colsWidth[i], 则文本换行
},{
    rowtype: 'setFontSize',   //设置字体大小, 对之后打印有影响,除非初始化
    fontsize:12 //字体大小
},{
    rowtype: 'lineWrap',  //打印机走纸(强制换行,结束之前的打印内容后走纸n行)
    n:3  //走纸行数
},{
    rowtype: 'setAlignment',  //设置对齐模式,对之后打印有影响,除非初始化
    alignment:0  //对齐方式 0--居左 , 1--居中, 2--居右
},{
    rowtype: 'printBarCode',  //打印一维条码
    data:'',  //条码数据
    symbology:8,//0-8
    width:160, //条码宽度: 取值2至6, 默认2
    height:160, //条码高度:取值1到255, 默认162
    textposition : 2 //文字位置 0--不打印文字, 1--文字在条码上方, 2--文字在条码下方, 3--条码上下方均打印
},{
    rowtype: 'printQRCode',  //打印二维条码
    data:'',  //二维码数据
    size:240 //二维码块大小(单位:点)
},{
    rowtype: 'printBitmap',  //打印图片
    image:'widget://res/Images/1.jpg'  //图片bitmap对象(最大宽度384像素,超过无法打印并且回调callback异常函数) 支持widget:// fs://
},{
    rowtype: 'printTypeHorizontalLine',  //画特殊水平线
    type:0, //水平线类型(0至11)
},{
    rowtype: 'cutPaper'//切纸
}]

callback(ret, err)

ret:

  • 类型:JSON对象
  • 内部字段:

{
    status: true,   //布尔型;true||false
    result :     //
}

err:

  • 类型:JSON对象
  • 内部字段:

{
    code: "",
    msg:""
}

示例代码

var obj = api.require('sunmiPrinter');
obj.printData({
    data : [{
        rowtype : 'printColumnsText',
        colsTextArr : ['名稱','數量','單價','金額'],
        colsWidthArr : [10, 6, 6, 8],
        colsAlign : [1, 2, 2, 2]
    },{
        rowtype : 'printColumnsText',
        colsTextArr : ['草莓酸奶A布甸','4','12.00','48.00'],
        colsWidthArr : [10, 6, 6, 8],
        colsAlign : [0, 2, 2, 2]
    },{
        rowtype : 'printText',
        text : '支付宝\n'
    }, {
        rowtype : 'printText',
        text : 'Alipay\n'
    }, {
        rowtype : 'printText',
        text : '===============================\n'
    }, {
        rowtype : 'printText',
        text : '订单金额                 0.01元\n'
    }, {
        rowtype : 'printText',
        text : '    参与优惠金额        0.01元\n'
    }, {
        rowtype : 'printText',
        text : '商家实收\n'
    }, {
        rowtype : 'printText',
        text : '-------------------------------\n'
    }, {
        rowtype : 'printText',
        text : '开票金额(用户实付)   0.01元\n'
    }, {
        rowtype : 'printText',
        text : '--------------------------------\n'
    }, {
        rowtype : 'printText',
        text : '交易号:\n'
    }, {
        rowtype : 'printText',
        text : '2016040621001004150224503623\n'
    }, {
        rowtype : 'printText',
        text : '门店名称  正新鸡排(欢乐谷二店)\n'
    }, {
        rowtype : 'printText',
        text : '买家帐号         1id***@21cn.com\n'
    }, {
        rowtype : 'printText',
        text : '--------------------------------\n'
    }, {
        rowtype : 'printText',
        text : '日期           2016-04-06 11:29\n'
    }, {
        rowtype : 'printText',
        text : '--------------------------------\n'
    }, {
        rowtype : 'printText',
        text : '此小票不需要用户签字\n'
    }, {
        rowtype : 'setFontSize',
        fontsize : 32
    }, {
        rowtype : 'printText',
        text : 'http://www.sunmi.com\n'
    }, {
        rowtype : 'printOriginalText',
        text : 'http://www.sunmi.com\n'
    }, {
        rowtype : 'setFontSize',
        fontsize : 24
    }, {
        rowtype : 'printText',
        text : 'http://www.sunmi.com\n'
    }, {
        rowtype : 'printOriginalText',
        text : 'http://www.sunmi.com\n'
    }, {
        rowtype : 'lineWrap',
        n : 2
    }, {
        rowtype : 'setAlignment',
        alignment : 1
    }, {
        rowtype : 'printBarCode',
        data : '6921505036025',
        width : 160,
        height : 160
    }, {
        rowtype : 'setAlignment',
        alignment : 1
    }, {
        rowtype : 'printQRCode',
        data : 'http://www.sunmi.com',
        size : 240
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 0
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 1
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 2
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 3
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 4
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 5
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 6
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 7
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 8
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 9
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 10
    }, {
        rowtype : 'printTypeHorizontalLine',
        type : 11
    }, {
        rowtype : 'printBitmap',
        image : 'widget://res/Images/1.jpg'
    }, {
        rowtype : 'lineWrap',
        n : 3
    }]
}, function(ret, err) {
    alert(JSON.stringify(ret));
});

可用性

Android系统

可提供的1.0.2及更高版本

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号