Pdf Publication Options
data class PdfPublicationOptions(val chunkSize: Int = 128000, val disableFontFace: Boolean = false, val enableDeterministicChunkRequests: Boolean = false, val password: String? = null)
Options used when creating a PdfPublication instance.
Properties
Link copied to clipboard
By default fonts are converted to OpenType fonts and loaded via font face rules. If disabled, fonts will be rendered using a built-in font renderer that constructs the glyphs with primitive path commands. The default value is false
.
Link copied to clipboard
Enables deterministic chunk sizes and offsets when streaming the PDF file using an IRandomAccessDataSource instance.