PrintingKit is a Swift SDK that helps you print images, strings, views, PDFs etc. in Swift and SwiftUI.
PrintingKit is a Swift SDK that helps you print images, strings, views, PDFs etc. in Swift and SwiftUI.
With PrintingKit, you just have to create a Printer
instance, or use Printer.shared
, then use it to print any of these supported PrintItem
types:
.attributedString(_:configuration:)
- an attributed string..imageData(_:)
- JPG or PNG data..imageFile(at:)
- a JPG or PNG file at a certain URL..pdfData(_:)
- PDF document data..pdfFile(at:)
- a PDF document file at a certain URL..string(_:configuration:)
- a plain string..view(_:withScale:)
- a SwiftUI view.More types can be added in the future. Feel free to contribute if you have a new type that you’d like to support.
PrintingKit can be installed with the Swift Package Manager:
https://github.com/danielsaidi/PrintingKit.git
To print any of supported print item type, just create a Printer
instance, or use Printer.shared
:
struct MyView: View {
let printer = Printer.shared
var body: some View {
VStack {
Button("Print PDF") {
try? printer.print(.pdf(at: anyUrl))
}
Button("Print view") {
try? printer.print(image)
}
Button("Print view without try") {
printer.printInTask(image)
}
}
}
}
See the online getting started guide for more information.
The online documentation has more information, articles, code examples, etc.
The Demo
folder has an app that lets you explore the library.
You can sponsor me on GitHub Sponsors or reach out for paid support, to help support my open-source projects.
Your support makes it possible for me to put more work into these projects and make them the best they can be.
Feel free to reach out if you have questions or if you want to contribute in any way:
PrintingKit is available under the MIT license. See the LICENSE file for more info.