gpt4 book ai didi

ios - 如何使用 AirPrint 在半页或 A5 上打印?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:23:24 25 4
gpt4 key购买 nike

我有一个应用程序需要从 iPad 打印收据和通行证。我已经实现了 AirPrint SDK,它运行良好,也就是说,我能够使用兼容 AirPrint 的打印机从 iPad 打印文档。

问题是我需要将这些收据和通行证放在半页(即 A4 页的一半)或 A5 页上。无论我对打印作业进行什么更改,它始终以完整的 A4 页面和横向打印。

这是我要打印的代码:

UIPrintInteractionController *printer = [UIPrintInteractionController sharedPrintController];
UIPrintInfo *printObject = [UIPrintInfo printInfo];
[printObject setJobName:@"Receipt"];
[printObject setOutputType:UIPrintInfoOutputGeneral];
[printObject setOrientation:UIPrintInfoOrientationLandscape];

UIPrintFormatter *printFormatter = [[UIPrintFormatter alloc] init];
[printFormatter setContentInsets:UIEdgeInsetsMake(0, 0, 0, 0)];

[printer setPrintFormatter:printFormatter];
[printer setPrintInfo:printObject];
[printer setDelegate:self];
[printer setPrintingItem:targetURL];
[printer presentFromRect:sender inView:view animated:YES completionHandler:^(UIPrintInteractionController *printInteractionController,BOOL completed, NSError *error){}];

我还尝试实现 choosePaper 委托(delegate)方法,但它也没有帮助。哦,在创建文档时,我指定了大小:

CGSize pageSize = CGSizeMake(595, 420);
NSString* fileName = @"GatePass.PDF";

NSArray *arrayPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *path = [arrayPaths objectAtIndex:0];
NSString* pdfFileName = [path stringByAppendingPathComponent:fileName];

UIGraphicsBeginPDFContextToFile(pdfFileName, CGRectZero, nil);

UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, pageSize.width, pageSize.height), nil);

理想的工作方式是,如果用户在打印时使用 A5 纸,则正常打印。如果用户使用A4纸,只打印一半页面等等。

知道如何实现吗?

最佳答案

使用 chosePaper 委托(delegate)方法。如果 A5 列在给定的列表中,则选择该纸。如果打印机有 A5 并且知道它有 A5 那么你应该得到 A5 输出。您还需要以从 chosePaper 返回的大小创建 PDF。

您可以使用打印机模拟器对此进行测试。使用加载纸张尺寸按钮设置其中一台带有“模拟纸张传感器”的打印机,并在其中一个纸盘中加载 A5。

关于ios - 如何使用 AirPrint 在半页或 A5 上打印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23523337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com