com.openhtmltopdf.java2d.api.FSPageOutputStreamSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-java2d Show documentation
Show all versions of openhtmltopdf-java2d Show documentation
Openhtmltopdf is a CSS 2.1 renderer written in Java. This artifact supports image output with the Java2D API.
The newest version!
package com.openhtmltopdf.java2d.api;
import java.io.IOException;
import java.io.OutputStream;
public interface FSPageOutputStreamSupplier {
public OutputStream supply(int zeroBasedPageNumber) throws IOException;
}