My app is currently creating an image at a size of 2480 3508 (A4 Page) How do I send this image to AirPrint on an A4 page? Once the image is created it saves it to the photos app and I would also like to send it to print. Any ideas? Thanks
AirPrint UIImage A4
586 Views Asked by Tom Coomer At
2
There are 2 best solutions below
0

SWIFT 3 VERSION
func printNow(_ image: UIImage){
let controller = UIPrintInteractionController.shared
let printInfo = UIPrintInfo.printInfo()
printInfo.outputType = .photoGrayscale//.photo
printInfo.jobName = "Testprint";
printInfo.duplex = .none
controller.printingItem = image
controller.showsPaperSelectionForLoadedPapers = false
controller.present(animated: true) { (controller, completed, error) in
if (!completed && (error != nil)) {
print("FAILED! due to error \(error.debugDescription)")
}
print("Completed: \(completed)")
}
}
You will need to use a UIPrintInteractionController, and set the image as printingItem. Depending on the print quality you choose (photo mode or standard) the default paper may be smaller than a4, but the user can select a4 in the print dialog.