Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 583 Bytes

logo-background.md

File metadata and controls

23 lines (16 loc) · 583 Bytes

Resulting QR Code image

Code

let doc = QRCode.Document(utf8String: "This is an image background")

doc.design.style.background = QRCode.FillStyle.Image(NSImage(named: "background-fill-image"))
doc.design.style.onPixels = QRCode.FillStyle.Solid(gray: 1, alpha: 0.5)

// Generate the image
let qrCodeImage = doc.cgImage(dimension: 400)

Background Image