这是一个令人沮丧的问题。
我正在使用UIPrintInteractionController
打印 PDF 文件。这个 PDF 文件的大小是A4,595x842 in pt,但打印出来的内容是按比例缩小的。
根据我是否使用 iPhone 模拟器,结果甚至会有所不同。当我在 iPhone 模拟器中测试以下代码时,我打印的文件是它的实际大小。但是当我在设备(iPad)中测试这些代码时,问题发生了,并带有日志“ Deskjet\0323520\032series\032[5B73DB]._ipp._tcp.local.: Print-Job request successful with warning: Job attributes与打印文档不匹配。 ”
我写的代码是这样的:
- (IBAction)printButtonTouched:(UIButton *)sender {
NSURL *testFileURL = [self makeTestPDF];
if ([UIPrintInteractionController canPrintURL:testFileURL]) {
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.jobName = testFileURL.path;
printInfo.orientation = UIPrintInfoOrientationPortrait;
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.duplex = UIPrintInfoDuplexNone;
self.myPrinter.printInfo =printInfo;
self.myPrinter.printingItem = testFileURL;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
[self.myPrinter presentFromRect:sender.frame inView:self.view animated:YES completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) {
}];
} else {
[self.myPrinter presentAnimated:YES completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) {
}];
}
}
}
- (UIPrintPaper *)printInteractionController:(UIPrintInteractionController *)printInteractionController choosePaper:(NSArray *)paperList
{
CGRect mediaBox = CGRectMake(0, 0, 595.276, 841.89);
UIPrintPaper *bestPaper = [UIPrintPaper bestPaperForPageSize:mediaBox.size withPapersFromArray:paperList];
return bestPaper;
}
当我在 PDF 上下文中开始一个 PDF 页面时,我的代码是这样的:
CGFloat a4Width = 595.276f;
CGFloat a4Height = 841.89f;
CGRect mediaBox = CGRectMake(0, 0, a4Width, a4Height);
UIGraphicsBeginPDFContextToFile(testPDFURL.path, mediaBox, nil);
UIGraphicsBeginPDFPageWithInfo(mediaBox, nil);
我正在测试的打印机是HP Deskjet Ink Advantage 3525。
当我在另一台也支持AirPrint的打印机上进行测试时,同样的事情仍然发生,唯一的区别是缩小比例。
我正在寻找如何使用实际尺寸打印 PDF 的答案。而且我已经尝试了将近一周的时间来寻找答案,但我没有找到有用的信息。请帮我。