
Product
Socket Now Protects the Chrome Extension Ecosystem
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
@pdftron/canvas-to-pdf
Advanced tools
CanvasToPDF can create vector quality PDF images using the canvas API.
CanvasToPDF can create vector quality PDF images using the canvas API.
Internally, CanvasToPDF uses modified versions of canvas2pdf and PDFKit to call on actual PDF drawing methods. CanvasToPDF has several notable improvements from canvas2pdf in that it has no issues calling fill and stroke consecutively and that reading canvas properties do not lead to errors. Thus, you can create vectorized PDFs such as the one below.
CanvasToPDF internally manages a mock 2d canvas context. Thus, you only need to pass a draw function calling on canvas commands and not the canvas itself.
CanvasToPDF currently only supports client-side usage. You can use this library similar to the manner below.
import canvasToPDF from "@pdftron/canvas-to-pdf";
import saveAs from "./FileSaver";
const draw = (ctx) => {
// canvas methods
};
canvasToPDF(draw, { width: 100, height: 150 }).then((res) => {
saveAs(res, "example.pdf", true);
});
The canvasToPDF function returns a blob containing vector graphics based PDF file, but since it is difficult to check that the blob has the expected images drawn you can use FileSaver to download an actual PDF as seen in the code above.
const draw = (ctx) => {
for (let i = 0; i < 12; i++) {
for (let j = 0; j < 12; j++) {
ctx.strokeStyle = `rgb(
0,
${Math.floor(255 - 42.5 * i)},
${Math.floor(255 - 42.5 * j)})`;
ctx.beginPath();
ctx.arc(25 + j * 40, 25 + i * 40, 15, 0, Math.PI * 2, true);
ctx.stroke();
}
}
};
The above code will draw multiple circles with gradient borders:
MIT
FAQs
CanvasToPDF can create vector quality PDF images using the canvas API.
The npm package @pdftron/canvas-to-pdf receives a total of 6 weekly downloads. As such, @pdftron/canvas-to-pdf popularity was classified as not popular.
We found that @pdftron/canvas-to-pdf demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.