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

com.github.aqiu202.qrcode.service.QrCodeService Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.aqiu202.qrcode.service;

import com.github.aqiu202.qrcode.exp.QrCodeException;
import com.github.aqiu202.qrcode.param.QrCodeProperties;
import java.awt.image.BufferedImage;

public interface QrCodeService {

    BufferedImage createImage(String content, QrCodeProperties configuration)
            throws QrCodeException;

    BufferedImage createImage(String content) throws QrCodeException;

    byte[] toByteArray(String content) throws QrCodeException;

    String toBase64Str(String content) throws QrCodeException;

    byte[] toByteArray(String content, QrCodeProperties configuration)
            throws QrCodeException;

    String toBase64Str(String content, QrCodeProperties configuration)
            throws QrCodeException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy