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

net.codecrete.qrbill.canvas.ByteArrayResult Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
//
// 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