+
+
+
diff --git a/jgnash-report-core/src/main/java/jgnash/report/pdf/Constants.java b/jgnash-report-core/src/main/java/jgnash/report/pdf/Constants.java
new file mode 100644
index 000000000..d7958165d
--- /dev/null
+++ b/jgnash-report-core/src/main/java/jgnash/report/pdf/Constants.java
@@ -0,0 +1,32 @@
+/*
+ * jGnash, a personal finance application
+ * Copyright (C) 2001-2019 Craig Cavanaugh
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+package jgnash.report.pdf;
+
+/**
+ * Print / Report specific constants
+ *
+ * @author Craig Cavanaugh
+ */
+public class Constants {
+ public static final float POINTS_PER_INCH = 72;
+ public static final float POINTS_PER_MM = (1 / 25.4f) * POINTS_PER_INCH;
+
+ private Constants() {
+ // utility class
+ }
+}
diff --git a/jgnash-report-core/src/main/java/jgnash/report/pdf/PageSize.java b/jgnash-report-core/src/main/java/jgnash/report/pdf/PageSize.java
new file mode 100644
index 000000000..44a1d0ea9
--- /dev/null
+++ b/jgnash-report-core/src/main/java/jgnash/report/pdf/PageSize.java
@@ -0,0 +1,53 @@
+/*
+ * jGnash, a personal finance application
+ * Copyright (C) 2001-2019 Craig Cavanaugh
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+package jgnash.report.pdf;
+
+import static jgnash.report.pdf.Constants.POINTS_PER_INCH;
+import static jgnash.report.pdf.Constants.POINTS_PER_MM;
+
+/**
+ * Enumeration of standard page sizes.
+ *