我正在为一家公司开发android应用程序,使他们可以进行收款和发票处理。
当前应用程序打印时没有任何特殊字符
如何更改字体大小并使标题加粗?
打印机参考:爱普生Tm-p80 型号:M316B
使用的代码:
txtPrt = new TxtPrt(compartir,"");
txtPrt.setFont('C');
txtPrt.writeLn("Prueba FontB -------------------------------------","");
print();
txtPrt.setFont('X');
txtPrt.writeLn("Prueba FontA -------------------------------------", "");
print();
打印方法:
private void print() {
if (impFactura != null)
try {
impFactura.mmOutputStream.write(txtPrt.Txt.getBytes());
txtPrt.Txt = "";
pausar();
} catch (IOException e) {
alertErrorImpre();
}
}