• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - UIView 的空中打印生成白页

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:20:29 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有以下打印代码,我希望它打印该类所附加到的 View Controller 的 UIVIew,

但打印只会生成空白页(和两页而不是一页)

我是 xcode 的新手,你能帮忙找出错误吗?

UIPrintInteractionController *pc = [UIPrintInteractionController
                                        sharedPrintController];
    UIPrintInfo *printInfo = [UIPrintInfo printInfo];
    printInfo.outputType = UIPrintInfoOutputGeneral;
    printInfo.jobName = @"rint file";
    pc.printInfo = printInfo;
    UIViewPrintFormatter *Pformatter = [self.view viewPrintFormatter];
    pc.printFormatter = Pformatter;

    UIPrintInteractionCompletionHandler completionHandler =
    ^(UIPrintInteractionController *printController, BOOL completed,
      NSError *error) {
        if(!completed && error){
            NSLog(@"rint failed - domain: %@ error code %u", error.domain,
                  error.code);
        }
    };
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
        [pc presentFromBarButtonItem:self.btnPrint animated:YES
                   completionHandler:completionHandler];
    } else {
        [pc presentAnimated:YES completionHandler:completionHandler];
    }



Best Answer-推荐答案


FWIW 这是从 iPad/iPhone 的任何 UIView 打印位图的完整工作代码

注意,这只会打印位图。

请注意,(奇怪的是)iOS 似乎不包括将 UIView 渲染到 postscript 的概念.. Print a UIView, but NOT by rendering as a bitmap image

换句话说,以下内容在 iOS 中似乎还没有意义......

UIViewPrintFormatter *f = [self.view viewPrintFormatter];

无论如何,以下内容将打印(仅作为位图)绝对任何 UIView...

您只需使用 renderInContext: 或,

对于更现代的代码,

drawViewHierarchyInRect: 和 UIGraphicsGetImageFromCurrentImageContext() 的组合

- (IBAction)printBid)sender
    {
    // we want to print a normal view ... some UILabels, maybe a black line

    // in this technique, depressingly we CREATE AN IMAGE of the view...

    // step 1. make a UIImage, of the whole view.

    UIGraphicsBeginImageContextWithOptions(self.printMe.bounds.size, NO, 0.0);

    // [self.printMe.layer renderInContext:UIGraphicsGetCurrentContext()];
    // UIImage *asAnImage = UIGraphicsGetImageFromCurrentImageContext();
    // .... or, more futuristically.....
    [self.printMe drawViewHierarchyInRect:self.printMe.bounds
        afterScreenUpdates:NO];
    UIImage *snapshotImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    // step 2. choose grayscale, etc

    UIPrintInfo *info = [UIPrintInfo printInfo];
    info.orientation = UIPrintInfoOrientationPortrait;
    info.outputType = UIPrintInfoOutputGrayscale;

    // step 3, print that UIImage

    UIPrintInteractionController *pic =
       [UIPrintInteractionController sharedPrintController];
    pic.delegate = self;
    //pic.printingItem = asAnImage;
    pic.printingItem = snapshotImage;
    pic.printInfo = info;

    UIPrintInteractionCompletionHandler completionHandler =
    ^(UIPrintInteractionController *pic, BOOL completed, NSError *error)
        {
        if (error)
            NSLog(@"failed... %@ %ld", error.domain, (long)error.code);
        if (completed)
            NSLog(@"completed yes");
        else
            NSLog(@"completed no");
        };     

    [pic presentAnimated:YES completionHandler:completionHandler];
    }

这真的很简单,幸运的是。但它是一个渲染的位图图像。

关于ios - UIView 的空中打印生成白页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19725033/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap