use of com.xenoage.utils.jse.io.JseOutputStream in project Zong by Xenoage.
the class PngScoreDocFileOutput method write.
@Override
public void write(ScoreDoc document, int fileIndex, OutputStream stream) throws IOException {
Layout layout = document.getLayout();
PngPrinter.print(layout, fileIndex, new JseOutputStream(stream));
}
Aggregations