PdfGem
This is a gem for converting HTML to PDF, the rendering engine is Chromium Browser
Prerequisites
This package depends on node.js and puppeteer run this command for installing them:
$ npm install -g node puppeteer
Installation
Add this line to your application's Gemfile:
gem 'pdf_gem'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install pdf_gem
You may need to add
Mime::Type.register "application/pdf", :pdf
to config/initializers/mime_types.rb
Usage
Usage from controller
class TestController < ApplicationController
def show
respond_to do |format|
format.html
format.pdf do
render pdf: "template", options #look options section
end
end
end
end
NOTE If your layout include other refernces like images, css or javascript you must provide the absolute path to the files, you can set config.action_controller.asset_host = "assets.example.com" in that way rails will include the full path for assets, more on https://apidock.com/rails/v6.0.0/ActionView/Helpers/AssetUrlHelper
Available lib methods
This method generates pdf from url
PdfGem.pdf_from_url()
This method generates pdf from html string
PdfGem.pdf_from_string()
Options
options
<[Object]> Options object which might have the following properties:url
<[string]> (Used only for PdfGem.pdf_from_url) This is the url to render.html
<[string]> (Used only for PdfGem.pdf_from_string) This is the html string to render.timeout
<[number]> Maximum navigation time in ms, default is 3000 ms.waitUntil
<[string]|[Array]<[string]>> When to consider navigation succeeded, defaults toload
. Given an array of event strings, navigation is considered to be successful after all events have been fired. Events can be either:load
- consider navigation to be finished when theload
event is fired.domcontentloaded
- consider navigation to be finished when theDOMContentLoaded
event is fired.networkidle0
- consider navigation to be finished when there are no more than 0 network connections for at least500
ms.networkidle2
- consider navigation to be finished when there are no more than 2 network connections for at least500
ms.cookies
<[Array]> set cookie in browser sessionname
<[string]> requiredvalue
<[string]> requiredurl
<[string]>domain
<[string]>path
<[string]>expires
<[number]> Unix time in seconds.httpOnly
<[boolean]>secure
<[boolean]>sameSite
<["Strict"|"Lax"]>disposition
<[string]> (Use only for controller render) Disposition string (inline/attachment).formats
<[string]> (Use only for controller render) Force to load view of a particular format (pdf, html, xml).filename
<[string]> (Use only for controller render) Filename of the file.destination
<[string]> (Use only for PdfGem.pdf_from_url and PdfGem.pdf_from_string) The file path to save the PDF to. If no destination is provided, will be returned a binary stringscale
<[number]> Scale of the webpage rendering. Defaults to1
. Scale amount must be between 0.1 and 2.displayHeaderFooter
<[boolean]> Display header and footer. Defaults tofalse
.headerTemplate
<[string]> HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them:date
formatted print datetitle
document titleurl
document locationpageNumber
current page numbertotalPages
total pages in the documentfooterTemplate
<[string]> HTML template for the print footer. Should use the same format as theheaderTemplate
.printBackground
<[boolean]> Print background graphics. Defaults tofalse
.landscape
<[boolean]> Paper orientation. Defaults tofalse
.pageRanges
<[string]> Paper ranges to print, e.g., '1-5, 8, 11-13'. Defaults to the empty string, which means print all pages.format
<[string]> Paper format. If set, takes priority overwidth
orheight
options. Defaults to 'Letter'.width
<[string]|[number]> Paper width, accepts values labeled with units.height
<[string]|[number]> Paper height, accepts values labeled with units.margin
<[Object]> Paper margins, defaults to none.top
<[string]|[number]> Top margin, accepts values labeled with units.right
<[string]|[number]> Right margin, accepts values labeled with units.bottom
<[string]|[number]> Bottom margin, accepts values labeled with units.left
<[string]|[number]> Left margin, accepts values labeled with units.preferCSSPageSize
<[boolean]> Give any CSS@page
size declared in the page priority over what is declared inwidth
andheight
orformat
options. Defaults tofalse
, which will scale the content to fit the paper size.
NOTE By default, generates a pdf with modified colors for printing. Use the
-webkit-print-color-adjust
property to force rendering of exact colors.Example of working footer template:
<div id="footer-template" style="font-size:10px !important; color:#808080; padding-left:10px"> <span class="date"></span> <span class="title"></span> <span class="url"></span> <span class="pageNumber"></span> <span class="totalPages"></span> </div>
The width
, height
, and margin
options accept values labeled with units. Unlabeled values are treated as pixels.
All possible units are:
px
- pixelin
- inchcm
- centimetermm
- millimeter
The format
options are:
Letter
: 8.5in x 11inLegal
: 8.5in x 14inTabloid
: 11in x 17inLedger
: 17in x 11inA0
: 33.1in x 46.8inA1
: 23.4in x 33.1inA2
: 16.54in x 23.4inA3
: 11.7in x 16.54inA4
: 8.27in x 11.7inA5
: 5.83in x 8.27inA6
: 4.13in x 5.83in
NOTE
headerTemplate
andfooterTemplate
markup have the following limitations:
- Script tags inside templates are not evaluated.
- Page styles are not visible inside templates.
Troubleshooting
In development enviroment if the server runs in single thead mode the app will go in deadlock. Youm must run the server in multithread mode. If you use puma as dev server you can start the server with puma -w 3
Contributing
You are welcome to contribute.
License
The gem is available as open source under the terms of the Apach e2.0 License.