com.openhtmltopdf.outputdevice.helper.PageDimensions 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.outputdevice.helper;
public class PageDimensions {
public final Float w;
public final Float h;
public final boolean isSizeInches;
public PageDimensions(Float w, Float h, boolean isSizeInches) {
this.w = w;
this.h = h;
this.isSizeInches = isSizeInches;
}
}