interface Result
Provides the PDF as a byte array and a function that saves it to a path on the disk.
abstract fun getBytes(): ByteArray
Return the PDF as a byte array. |
|
abstract fun saveTo(path: String): Unit
Save the PDF to the given path. |
abstract class AbstractResult : Result
Base class for conversion results. |