com.openhtmltopdf.pdfboxout.PdfBoxLinkManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-pdfbox Show documentation
Show all versions of openhtmltopdf-pdfbox Show documentation
Openhtmltopdf is a CSS 2.1 renderer written in Java. This artifact supports PDF output with Apache PDF-BOX 2.
The newest version!
package com.openhtmltopdf.pdfboxout;
import java.awt.*;
import java.util.*;
/**
* Use fast link manager instead.
*/
public class PdfBoxLinkManager {
/**
* All Elements which can have a shaped image map implement this
*/
public interface IPdfBoxElementWithShapedLinks {
Map getLinkMap();
}
}