我在尝试使用xcode和ePos打印一行文本后出现问题。
只打印文字或图片效果很好。但是将它们放在一张纸上并不起作用。
它只是先输出任何内容然后停止。文本是第一个还是图像。
这是我的代码。
请帮忙。
我的功能包含....
PrinterU *pj = [[PrinterU alloc] init];
EposB *builder = [pj getNewEposB];
EposP *printer = [pj getNewEposP];
[pj setPrintStyle:PRINTSTYLE_BODY2 eposBuilder:builder];
[pj loadTextLine:@"print to tm-p60II \n" eposBuilder:builder];
[pj loadTextLine:@"DONE BY tester" eposBuilder:builder];
NSLog(@"%@", signature);
UIImage*image = [UIImage imageWithData:signature];
[pj addImage:image X:0 Y:0 Width:300 Height:300 Color:(EPOS_OC_PARAM_DEFAULT) eposBuilder:builder];
[pj print:builder eposPrint:printer ];
[pj closePrinterConnection];
答案 0 :(得分:0)
原来打印机sdk无法拉伸图像。通过传递分辨率来修复它。