/Html2Pdf

Html To PDF Converter Implementation By openhtmltopdf

Primary LanguageJava

HTML 2 PDF Conversor

How to use

public class MyClass {

    public static void main(String[] args) throws Exception {
        String uriHtml = args[0];
        String destinationPath = args[1];
        new Converter(uriHtml, destinationPath).convert();
    }

}