net.codecrete.qrbill.canvas.ByteArrayResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qrbill-generator Show documentation
Show all versions of qrbill-generator Show documentation
Java library for generating Swiss QR bills
//
// Swiss QR Bill Generator
// Copyright (c) 2017 Manuel Bleichenbacher
// Licensed under MIT License
// https://opensource.org/licenses/MIT
//
package net.codecrete.qrbill.canvas;
import java.io.IOException;
public interface ByteArrayResult {
/**
* Gets the resulting graphics as a byte array.
*
* @return the byte array
* @throws IOException thrown if the construction of the byte array fails
*/
byte[] toByteArray() throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy