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

org.webswing.ext.services.PdfService Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.ext.services;

import java.awt.Graphics2D;
import java.awt.print.PageFormat;
import java.io.OutputStream;

public interface PdfService {

    Graphics2D createPDFGraphics(OutputStream out,  PageFormat format);

    void startPagePDFGraphics(Graphics2D pdfGrapthics, PageFormat pageFormat2);

    void endPagePDFGraphics(Graphics2D pdfGrapthics);

    void closePDFGraphics(Graphics2D pdfGrapthics);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy