Swiftpack.co - Appracatappra/SwiftletBarcodes as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Appracatappra.
Appracatappra/SwiftletBarcodes 1.0.4
Creates a Barcode as a Image representing the given data (as a String) in the given BarcodeFormat.
⭐️ 1
🕓 2 years ago
iOS macOS watchOS tvOS
.package(url: "https://github.com/Appracatappra/SwiftletBarcodes.git", from: "1.0.4")

SwiftletBarcodes for Swift and SwiftUI

Creates a Barcode as a Image representing the given data (as a String) in the given BarcodeFormat. SwiftletBarcodes can generate barcodes in the following formats:

  • Code 128
  • PDF 417
  • Aztec
  • QR Code

There are two forms of the generate function:

  • One generates the requested barcode at the system specified size.
  • The other generates the barcode at a given width and height.

NOTE: Barcode generation is NOT supported on watchOS and is only included as a stub to support cross platform development.

Installation

Swift Package Manager (Xcode 11 and above)

  1. Select File > Swift Packages > Add Package Dependency… from the File menu.
  2. Paste https://github.com/Appracatappra/SwiftletBarcodes.git in the dialog box.
  3. Follow the Xcode's instruction to complete the installation.

Why not CocoaPods, or Carthage, or blank?

Supporting multiple dependency managers makes maintaining a library exponentially more complicated and time consuming.

Since, the Swift Package Manager is integrated with Xcode 11 (and greater), it's the easiest choice to support going further.

Using SwiftletBarcodes

SwiftletBarcodes in very easy to use in you SwiftUI app. The following example shows how to generate barcodes with either of the two generate functions.

Example:

// At system size
let barcodeA = SwiftletBarcodes.generate(from:"142208819120", format:.code128)
 
// At a given width and height
let barcodeB = SwiftletBarcodes.generate(from:"142208819120", format:.code128, width:250, height:100)

Additionally, SwiftletBarcodes include a pre-made SwiftUI View to display a barcode card, SwiftletBarcodeView.

Example

The following is an example of displaying the SwiftletBarcodeView on an iOS device:

SwiftletBarcodeView(showTitle: true, title:"Loyalty Card", showData: true, data: "1 12208 81912 0", format: .code128, hasDivider: true, width: 380, height: 150)

Will result in a screen like the following being displayed:

GitHub

link
Stars: 1
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

1.0.4
2 years ago

Downgrade tooling to Swift Package Manager 5.3

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics