com.openhtmltopdf.extend.FSObjectDrawer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
package com.openhtmltopdf.extend;
import com.openhtmltopdf.render.RenderingContext;
import org.w3c.dom.Element;
/**
* Handle the drawing of <object> tags
*/
public interface FSObjectDrawer {
void drawObject(Element e, double x, double y, double width, double height, OutputDevice outputDevice,
RenderingContext ctx, int dotsPerPixel);
}