Class PDFDictUtils
java.lang.Object
com.inductiveautomation.rm.pdf.reader.PDFDictUtils
A collection of routines for pulling various objects out of PDF dictionaries
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean[]
getBoolArray
(Map dictionary, PDFFile srcFile, String key) An array of bools : << /Vals [true false] >>static float
static float[]
getFloatArray
(Map dictionary, PDFFile srcFile, String key) An array of floats: << /Nums [1.414 2.717 3.1415 ] >>static int
static int[]
getIntArray
(Map dictionary, PDFFile srcFile, String key) An array of ints : << /Ints [1 3 5 7] >>static Rectangle2D
getRectangle
(Map dictionary, PDFFile srcFile, String key) A rectangle : << /BBox [0 0 612 792] >>static AffineTransform
getTransform
(Map dictionary, PDFFile srcFile, String key) A transformation matrix: << /Matrix [1 0 0 1 0 0] >>
-
Constructor Details
-
PDFDictUtils
public PDFDictUtils()
-
-
Method Details
-
getFloatArray
An array of floats: << /Nums [1.414 2.717 3.1415 ] >> -
getIntArray
An array of ints : << /Ints [1 3 5 7] >> -
getBoolArray
An array of bools : << /Vals [true false] >> -
getTransform
A transformation matrix: << /Matrix [1 0 0 1 0 0] >> -
getRectangle
A rectangle : << /BBox [0 0 612 792] >> -
getInt
-
getFloat
-