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

com.openhtmltopdf.extend.SVGDrawer Maven / Gradle / Ivy

Go to download

Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.

There is a newer version: 1.0.10
Show newest version
package com.openhtmltopdf.extend;

import java.util.List;

import org.w3c.dom.Element;

import com.openhtmltopdf.css.sheet.FontFaceRule;
import com.openhtmltopdf.layout.SharedContext;
import com.openhtmltopdf.render.RenderingContext;

public interface SVGDrawer {
    public void importFontFaceRules(List fontFaces,
            SharedContext shared);

    public SVGImage buildSVGImage(Element svgElement, double cssWidth,
            double cssHeight, double cssMaxWidth, double cssMaxHeight,
            double dotsPerPixel);

    public static interface SVGImage {
        public int getIntrinsicWidth();

        public int getIntrinsicHeight();

        public void drawSVG(OutputDevice outputDevice, RenderingContext ctx,
                double x, double y);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy