Class PDFBuffer
java.lang.Object
com.inductiveautomation.rm.pdf.writer.PDFOutput
com.inductiveautomation.rm.pdf.writer.PDFBuffer
- Direct Known Subclasses:
- PDFPage
This class is like a StringBuffer, but for creating PDF files instead of strings. It resides entirely in memory so it
 should be used sparingly. The preferred PDFOutput implementation is 
PDFOutputStream to prevent large PDF
 assets from being held in memory.- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
_source
 
- 
- 
Constructor Details- 
PDFBufferpublic PDFBuffer()
 
- 
- 
Method Details- 
lengthpublic long length()Description copied from class:PDFOutputReturns the current length of the output.
- 
appendDescription copied from class:PDFOutputAdds a character to the pdf buffer.
- 
appendDescription copied from class:PDFOutputAppends an arbitrary byte array with the given offset and length.
- 
appendAppends another buffer.
- 
toByteArraypublic byte[] toByteArray()
 
-