PrintingKit

PrintingKit is a Swift SDK that helps you print images, strings, views, PDFs etc. in Swift and SwiftUI.

106
12
Swift

Project Icon

Version Swift 6.0 Swift UI Documentation MIT License

PrintingKit

PrintingKit is a Swift and SwiftUI SDK that helps you print images, strings, views, PDFs etc. directly from your app.

With PrintingKit, you just have to create a Printer instance, or use Printer.shared, then use it to print any of the following supported printable types:

  • printAttributedString(_:config:) - print an attributed string.
  • printData(_:withFileExtension:) - try to print generic data.
  • printFile(at:) - try to print a generic file.
  • printImage(_:) - print a UIImage or NSImage.
  • printImageData(_:) - print JPG or PNG data.
  • printImageFile(at:) - print a JPG or PNG file at a certain URL.
  • printPdfData(_:) - print PDF document data.
  • printPdfFile(at:) - print a PDF document file at a certain URL.
  • printString(_:config:) - print a plain string.
  • printView(_:withScale:) - print a SwiftUI view.

Note that only certain functions support providing a page configuration, which can specify paper size and margins.

PrintingKit works on both iOS and macOS.

Installation

PrintingKit can be installed with the Swift Package Manager:

https://github.com/danielsaidi/PrintingKit.git

Getting started

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 something") {
                try? printer.print... // Use any of the available print functions
            }
        }
    }
}

PrintingKit also has PDF utilities, which are used to print certain types. Since these utilies are the only ones that support paper size, page margins, etc. we should aim to make more print functions use PDF as print format.

Documentation

The online documentation has more information, articles, code examples, etc.

Demo Application

The Demo folder has a demo app that lets you explore the library.

Support my work

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.

Contact

Feel free to reach out if you have questions, or want to contribute in any way:

License

PrintingKit is available under the MIT license. See the LICENSE file for more info.