io.github.cloudify.scala.spdf.PageOrientation.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spdf_2.11 Show documentation
Show all versions of spdf_2.11 Show documentation
Create PDFs using plain old HTML+CSS. Uses wkhtmltopdf on the back-end which renders HTML using Webkit.
The newest version!
package io.github.cloudify.scala.spdf
sealed trait PageOrientation {
val value: String
}
object Landscape extends PageOrientation {
override val value = "Landscape"
}
object Portrait extends PageOrientation {
override val value = "Portrait"
}