Class RMPDFImageReader
java.lang.Object
com.inductiveautomation.rm.graphics.RMPDFImageReader
- All Implemented Interfaces:
RMImageData.ImageReader
Provides info for an encapsulated PDF (a PDF used as an image).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
canRead
(byte[] data) Returns whether PDF image reader can read the file provided in the byte array.static boolean
Returns whether PDF image reader can read files with given extension.Returns the PDF file for the PDF image data (creating if necessary).void
paint
(RMImageData anImageData, Graphics2D g, double x, double y, double w, double h) Draw at maximum resolution.void
readBasicInfo
(RMImageData anImageData) Reads the basic info from PDF data.void
ImageReader method - just a stub, since PDF images don't have image bytes.readImage
(RMImageData anImageData) Reads the image.
-
Constructor Details
-
RMPDFImageReader
Creates a new PDF image reader.
-
-
Method Details
-
canRead
Returns whether PDF image reader can read files with given extension. -
canRead
public static boolean canRead(byte[] data) Returns whether PDF image reader can read the file provided in the byte array. -
getPDFFile
Returns the PDF file for the PDF image data (creating if necessary). -
readBasicInfo
Reads the basic info from PDF data.- Specified by:
readBasicInfo
in interfaceRMImageData.ImageReader
-
readImage
Reads the image.- Specified by:
readImage
in interfaceRMImageData.ImageReader
-
readBytesDecoded
public void readBytesDecoded()ImageReader method - just a stub, since PDF images don't have image bytes.- Specified by:
readBytesDecoded
in interfaceRMImageData.ImageReader
-
paint
Draw at maximum resolution. Page is scaled & translated to fit exactly in r.
-