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

com.github.jhonnymertz.wkhtmltopdf.wrapper.objects.Cover Maven / Gradle / Ivy

Go to download

A Java based wrapper for the wkhtmltopdf command line tool. As the name implies, it uses WebKit to convert HTML documents to PDFs.

There is a newer version: 1.3.1-RELEASE
Show newest version
package com.github.jhonnymertz.wkhtmltopdf.wrapper.objects;

/**
 * The type Cover.
 */
public class Cover extends Page {

    @Override
    public String SetObjectIdentifier() {
        return "cover";
    }

    /**
     * Instantiates a new Cover.
     *
     * @param source the source
     * @param type   the type
     */
    public Cover(final String source, final SourceType type) {
        super(source, type);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy