EFQRCodeStyleImageFill
public class EFQRCodeStyleImageFill : EFQRCodeStyleBase
Image fill QR code implementation.
This class implements the image fill QR code rendering, creating QR codes where images are used as background with QR code modules as masks.
## Features
- Image background with QR code mask overlay
- Customizable background and mask colors
- Image transparency control
- Icon and backdrop support
## Usage
let params = EFStyleImageFillParams(
image: imageParams,
backgroundColor: .white,
maskColor: .black
)
let style = EFQRCodeStyleImageFill(params: params)
-
Creates an image fill QR code with the specified parameters.
Declaration
Swift
public init(params: EFStyleImageFillParams)
Parameters
params
The image fill styling parameters.