com.netgrif.application.engine.business.qr.QrCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
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