Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
79 views
in Technique[技术] by (71.8m points)

ios - Barcode is not shown in print preview.(Objective C)

I have a pdf containing some barcodes. In WKWebView the pdf preview is fine(Barcodes are shown). But in the print Preview barcodes are not coming.

Here is the code I am using.

#define kPrintingPerPageEdgeInsets UIEdgeInsetsMake(60, 40, 60, 40)

- (void)presentPrintInteractionControllerWithFormatter:(UIPrintFormatter *)printFormatter
                                               jobName:(NSString *)jobName
                                           contentType:(PrintingContentType)contentType
                              actionSheetBarButtonItem:(UIBarButtonItem *)barButtonItem
                                 printInfoOrientation:(UIPrintInfoOrientation) printOrientation
{
    UIPrintInteractionController *printInteractionController = [[self class] createPrintInteractionControllerWithJobName:jobName];
    printInteractionController.printFormatter = printFormatter;
    printInteractionController.printFormatter.perPageContentInsets = kPrintingPerPageEdgeInsets;
    printInteractionController.printInfo.orientation = printOrientation;
    [self presentPrintInteractionController:printInteractionController
                                contentType:contentType
                              barButtonItem:barButtonItem];
}

+ (UIPrintInteractionController *)createPrintInteractionControllerWithJobName:(NSString *)jobName
{
    UIPrintInteractionController *printInteractionController = [UIPrintInteractionController sharedPrintController];
    printInteractionController.printingItem = nil;
    printInteractionController.printFormatter = nil;

    UIPrintInfo *printInfo = [UIPrintInfo printInfo];
    printInfo.outputType = UIPrintInfoOutputGeneral;
    printInfo.jobName = jobName;
    printInteractionController.printInfo = printInfo;

    return printInteractionController;
}
question from:https://stackoverflow.com/questions/65867940/barcode-is-not-shown-in-print-preview-objective-c

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I have identified the solution by myself. Instead of using printFormatter we can use PrintingItem property of printInteractionController to print the document.

printInteractionController.printFormatter = nil;
printInteractionController.printingItem = pdfData;

pdfData is the NSData related to the pdf.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...