2

我正在使用 Apple 打印文档示例将 pdf 从 iPhone 打印到兼容 Airprint 的打印机。但我没有从 iPhone 获得整页打印,请查看我得到的图片,我需要将 pdf 打印在全纸长度、宽度上。

在此处输入图像描述

下面给出了我用于打印功能的代码,它与 Apple 打印示例应用程序中的代码相同,

    UIPrintInteractionController *controller = [UIPrintInteractionController sharedPrintController];
    if(!controller){
        NSLog(@"Couldn't get shared UIPrintInteractionController!");
        return;
    }

    UIPrintInteractionCompletionHandler completionHandler =
    ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
        if(!completed && error){
            NSLog(@"FAILED! due to error in domain %@ with error code %u", error.domain, error.code);
        }
    };

    controller.delegate = self;

    // Obtain a printInfo so that we can set our printing defaults.
    UIPrintInfo *printInfo = [UIPrintInfo printInfo];
    // This application produces General content that contains color.
    printInfo.outputType = UIPrintInfoOutputGeneral;
    // We'll use the URL as the job name.
    printInfo.jobName = [_filePath lastPathComponent];
    // Set duplex so that it is available if the printer supports it. We are
    // performing portrait printing so we want to duplex along the long edge.
    printInfo.duplex = UIPrintInfoDuplexLongEdge;
    // Use this printInfo for this print job.
    controller.printInfo = printInfo;
    controller.printingItem = myData;
    // Be sure the page range controls are present for documents of > 1 page.
    controller.showsPageRange = YES;

    // This code uses a custom UIPrintPageRenderer so that it can draw a header and footer.
    APLPrintPageRenderer *myRenderer = [[APLPrintPageRenderer alloc] init];
//  UIPrintPageRenderer *myRenderer = [[UIPrintPageRenderer alloc] init];
    // The APLPrintPageRenderer class provides a jobtitle that it will label each page with.
//    myRenderer.jobTitle = printInfo.jobName;
    // To draw the content of each page, a UIViewPrintFormatter is used.
    UIViewPrintFormatter *viewFormatter = [docWebView viewPrintFormatter];

#if SIMPLE_LAYOUT

    UIFont *font = [UIFont fontWithName:@"Helvetica" size:HEADER_FOOTER_TEXT_HEIGHT];
    CGSize titleSize = [myRenderer.jobTitle sizeWithFont:font];
    myRenderer.headerHeight = myRenderer.footerHeight = titleSize.height + HEADER_FOOTER_MARGIN_PADDING;
#endif
    [myRenderer addPrintFormatter:viewFormatter startingAtPageAtIndex:0];
    // Set our custom renderer as the printPageRenderer for the print job.
    controller.printPageRenderer = myRenderer;

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    {
        [controller presentFromBarButtonItem:sender animated:YES completionHandler:completionHandler];  // iPad
    }
    else
    {
        docWebView.hidden = YES;
        [controller presentAnimated:YES completionHandler:completionHandler];  // iPhone
    }
4

3 回答 3

4

我通过绘制到 PDF 上下文来生成 PDF 以打印整页。我通过这样的调用进行了设置:

NSMutableData *pdfData = [NSMutableData data];
UIGraphicsBeginPDFContextToData(pdfData, CGRectZero, nil);

请注意,因为我已经传入了 CGRectZero 的大小,所以上下文的大小是默认大小

 /*
  default pdf..
   8.5 X 11 inch
   612 x 792
   */

**这只是 72dpi,但它是默认值。我有一个技巧,可以在绘制之前缩小以提高分辨率:

for (int page = 0 : page < numberPages : page ++ ){
UIGraphicsBeginPDFPage();
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
CGFloat scaleFactor = 3.0;
CGContextSaveGState(pdfContext);
CGContextScaleCTM(pdfContext, 1.0/scaleFactor, 1.0/scaleFactor);


///draw stuff
/// context size is now (612.0 * 3.0 , 792.0 * 3.0) , i.e. resolution 72.0 * 3.0 dpi..
//


CGContextRestoreGState(pdfContext);

}//page drawing loop


NSString *filePath = [[NSFileManager defaultManager] //etcetc make a path];
BOOL success = [pdfData writeToFile:filePath atomically:YES];

好的,现在我有我的 pdf,我直接打印到 UIPrintInteractionController

NSData *pdfData = [NSData dataWithContentsOfFile:[[self pdfView]filePath]];
   if ([UIPrintInteractionController canPrintData:pdfData]) {

    UIPrintInteractionController *pr = [UIPrintInteractionController sharedPrintController];

    void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) =
    ^(UIPrintInteractionController *pic, BOOL completed, NSError *error) {
      if (!completed && error) NSLog(@"Print error: %@", error);
    };

    pr.printingItem = pdfData;
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
      [pr presentFromRect:tool.frame inView:self.view animated:YES completionHandler:completionHandler];
    } else {
      [pr presentAnimated:YES completionHandler:completionHandler];
    } 
  }

请注意,我不会弄乱 UIPrintPageRenderer。我对那门课没有经验,我从来不需要研究它。但在我看来,如果它为页眉和页脚腾出空间,那么这些必然会缩小您的文档以腾出空间。尝试将页眉和页脚合并到文档本身中。祝你好运

于 2014-01-11T13:14:36.660 回答
1
bestPaperForPageSize:withPapersFromArray:

返回 UIKit 根据给定的页面大小和特定于打印机的纸张大小-可成像区域组合确定最适合打印作业的打印纸对象。

+ (UIPrintPaper *)bestPaperForPageSize:(CGSize)pageSize withPapersFromArray:(NSArray *)paperList

的委托可以在协议中声明的printInteractionController:choosePaper:UIPrintInteractionController方法的实现中调用此方法。UIPrintInteractionControllerDelegate

于 2014-01-11T18:14:09.797 回答
0

instead of UIViewPrintFormatter *viewFormatter = [docWebView viewPrintFormatter]; use viewPrintFormatter *viewFormatter = [[UIPrintFormatter alloc] init];

don't need specific formatter for pdf and image

于 2015-03-27T17:55:55.987 回答