
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
PDF generator (from HTML) gem for Ruby on Rails.
Add this line to your application's Gemfile:
gem 'html2pdf-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install html2pdf-rails
Controller
class ThingsController < ApplicationController
def show
respond_to do |format|
format.html
format.pdf do
render_to_pdf pdf: 'file_name' # Excluding ".pdf" extension.
end
end
end
end
Layout
!!!
%html
%head
%meta{ charset: 'utf-8' }
= html2pdf_base_tag
= stylesheet_link_tag 'pdf', media: 'all'
%body
#header= image_tag 'logo.jpg'
#content= yield
You can get signed url of Cloud Storage if your Cloud Funciton code support it.
pdf_url = render_pdf_and_get_url pdf: 'file_name'
redirect_to pdf_url
class ThingsController < ApplicationController
def show
respond_to do |format|
format.html
format.pdf do
render_to_pdf(
pdf: 'file_name', # Excluding ".pdf" extension.
disposition: 'attachment', # default 'inline'
template: 'things/show',
layout: 'pdf', # for a pdf.pdf.erb file
show_as_html: params.key?('debug'), # allow debugging based on url param
pdf_options: { # SEE: https://pptr.dev/api/puppeteer.pdfoptions
margin: {
top: '30px',
bottom: '30px',
}
}
)
end
end
end
end
const functions = require("firebase-functions");
const puppeteer = require("puppeteer");
const runOptions = {
timeoutSeconds: 20,
memory: "1GB"
};
exports.html2pdf = functions
.runWith(runOptions)
.https.onRequest(
async ({ method, body: { html = "", putToStorage = false, pdfOptions = {} } }, res) => {
const browser = await puppeteer.launch({
headless: true,
args: ["--no-sandbox"]
});
const page = await browser.newPage();
await page.emulateMedia("print");
await page.goto("data:text/html;charset=UTF-8," + html, {
waitUntil: "networkidle0"
});
const pdf = await page.pdf(pdfOptions);
if (putToStorage) {
// Code for Cloud Storage is omitted.
} else {
res.header({ "Content-Type": "application/pdf" });
res.send(pdf);
}
}
);
In config/initializers/html2pdf_rails.rb
, you can configure the following values.
Html2Pdf.configure do |config|
config.endpoint = 'YOUR_HTTP_TRIGGER_ENDPOINT'
end
Bug reports and pull requests are welcome on GitHub at https://github.com/SonicGarden/html2pdf-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that html2pdf-rails demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.