現在のスクリーンショット(iPadビュー用)を印刷しようとすると、コンソールウィンドウでこの奇妙なエラーが発生します: failed to find PDF header: %PDF not found
。コンソールエラー:見つからないPDFヘッダー: `%PDF 'が見つかりません
コンソールウィンドウでこのエラーが発生するのはなぜですか?なぜ私はPDF
に関連する何かを言及していますが、私はプロジェクト全体でPDF
関連のものを使用しません。スクリーンショットを印刷するために使用して
コードImは次のとおりです。
- (IBAction)print:(id)sender {
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, NO, [UIScreen mainScreen].scale);
else
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
//saving the file to documents directory
NSData * imageData = UIImagePNGRepresentation(viewImage);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
documentsDirectory = [documentsDirectory stringByAppendingPathComponent:@"Screenshot.png"];
[imageData writeToFile:documentsDirectory atomically:YES];
NSString *myFilePath = [documentsDirectory stringByAppendingPathComponent:@"Screenshot.png"];
UIImage *screenShot = [UIImage imageWithData:imageData];
NSData *myData = [NSData dataWithData:UIImagePNGRepresentation(screenShot)];
self.pic = [UIPrintInteractionController sharedPrintController];
if (self.pic && [UIPrintInteractionController canPrintData:myData]) {
self.pic.delegate = self;
//filling up print info
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.jobName = [myFilePath lastPathComponent];
printInfo.duplex = UIPrintInfoDuplexLongEdge;
self.pic.printInfo = printInfo;
self.pic.showsPageRange = YES;
self.pic.printingItem = myData;
void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) =
^(UIPrintInteractionController *pic, BOOL completed, NSError *error) {
if (!completed && error)
NSLog(@"FAILED! due to error in domain %@ with error code %u",
error.domain, error.code);
};
[self.pic presentFromRect:self.printButton.frame inView:self.view animated:YES completionHandler: completionHandler]; // iPad
}
}
ファイルパス(Screenshot.png)が正しいか、そしてそれが正しくドキュメントディレクトリに保存されます。
これはエラーを発生させる行です:[self.pic presentFromRect:self.printButton.frame inView:self.view animated:YES completionHandler:completionHandler]; – JAHelia
私は間違っていると思います!しかし、OS XとiOSの印刷システムは、一般的にPDFに基づいています。おそらく、印刷パイプラインの何かが同様のチェックをしているかもしれません。 –
そのエラーは印刷プロセスに問題を引き起こすでしょうか?私は印刷プロセスをテストすることはできません。 '私はAirPlayでサポートされているプリンタを持っていません。 – JAHelia