play2-scala-pdf
is a Play Framework module to help generate PDF documents dynamically from Play Framework web application.
It simply renders Play Framework HTML and CSS-based view templates to PDF via Flying Saucer library, which uses OpenPDF, an open-source LGPL and MPL version of an older fork of iText for PDF generation.
The supported Scala and Play versions as follows:
Scala 2.10 | Scala 2.11 | Scala 2.12 | Scala 2.13 | |
---|---|---|---|---|
Play 2.4 | YES |
YES |
||
Play 2.5 | YES |
|||
Play 2.6 | YES |
YES |
||
Play 2.7 | YES |
YES |
YES |
|
Play 2.8 | YES |
YES |
If you are using Play Framework Java, check out https://github.com/innoveit/play2-pdf.
play2-scala-pdf
is a fork of the project above with the aim to reduce the final distribution size for Play Framework Scala projects by rebasing the module to Play Framework Scala core (i.e. avoid including Play Framework Java additions in Play Framework Scala projects).
Create a PDF generator factory method in your application's Guice module:
@Provides
def providePdfGenerator(): PdfGenerator = {
val pdfGen = new PdfGenerator()
pdfGen.loadLocalFonts(Seq("fonts/opensans-regular.ttf"))
pdfGen
}
Currently, the module is hosted at Maven Central Repository. Include the following lines in build.sbt
, then reload SBT to resolve and enable the module:
libraryDependencies ++= Seq(
...
"com.hhandoko" %% "play28-scala-pdf" % "4.3.0" // Use `play27-scala-pdf` for Play 2.7.x apps, etc.
)
Remember to add Sonatype snapshots repository to use snapshot releases:
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots")
)
NOTE: If you are using an IDE like Eclipse, remember to re-generate your project files.
You can use a standard Play Framework Scala template like this one:
@(message: String)
@main("Example Page") {
Image: <img src="/public/images/favicon.png"/><br/>
Hello world! <br/>
@message <br/>
}
Then this template, after having imported com.hhandoko.play.pdf.PdfGenerator
, can simply be rendered as:
class HomeController @Inject() (pdfGen: PdfGenerator) extends Controller {
def examplePdf = Action { pdfGen.ok(views.html.example(), "http://localhost:9000") }
}
where pdfGenerator.ok
is a simple shorthand notation for:
ok(pdfGenerator.toBytes(document.render("Your new application is ready."), "http://localhost:9000")).as("application/pdf")
Please observe the following constraints to avoid issues when using this module:
- Avoid using
media="screen"
qualifier on linked CSS in<head>
, otherwise you must provide specific print stylesheets (i.e.media="print"
) - Non-system fonts must be loaded explicitly (see below for example)
- External assets such as images need to be loaded as base64-encoded string
- External such as stylesheets will be loaded as per normal HTML page load
NOTE: If the specified URI is a path into Play Framework app classpath, the resource is loaded directly instead. See the above sample template for an example.
Fonts can be loaded by invoking PdfGenerator.loadLocalFonts
method. For example:
- if fonts are stored under
/conf/fonts
(or other project path mapped to the classpath), - it can be loaded by invoking
pdfGenerator.loadLocalFonts(Seq("fonts/FreeSans.ttf"))
NOTE: Non-system fonts in this context refers to WebFonts, fonts not available to the Java VM, or other fonts not included as part of normal OS distribution
We follow the "fork-and-pull" Git workflow.
- Fork the repo on GitHub
- Commit changes to a branch in your fork (use
snake_case
convention):- For technical chores, use
chore/
prefix followed by the short description, e.g.chore/do_this_chore
- For new features, use
feature/
prefix followed by the feature name, e.g.feature/feature_name
- For bug fixes, use
bug/
prefix followed by the short description, e.g.bug/fix_this_bug
- For technical chores, use
- Rebase or merge from "upstream"
- Submit a PR "upstream" with your changes
Please read CONTRIBUTING for more details.
The MIT License (MIT)
Original - Copyright (c) 2014 Jöerg Viola, Marco Sinigaglia
Derivative - Copyright (c) 2016 - 2020 play2-scala-pdf Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
play2-scala-pdf
is released under the MIT license. See the LICENSE file for further details.
Open Sans
font by Steve Matteson is released under the Apache 2 license. See the Open Sans Google Fonts page for further details.
Play Framework
logo is a trademark of Lightbend.
https://github.com/hhandoko/play2-scala-pdf/releases