All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netgrif.application.engine.business.qr.QrCode Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version
package com.netgrif.application.engine.business.qr;

import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import lombok.Data;
import net.glxn.qrgen.core.image.ImageType;

@Data
public class QrCode {

    private String content;

    private String fileName;

    private ImageType imageType = ImageType.JPG;

    private int width = 250;

    private int height = 250;

    private ErrorCorrectionLevel errorCorrectionLevel = ErrorCorrectionLevel.L;

    private int onColor = 0xFF000000;

    private int offColor = 0xFFFFFFFF;

    private String charset = "ISO-8859-1";

    public QrCode(String fileName, String content) {
        this.fileName = fileName;
        this.content = content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy