Paperbase Docs

PB_LOGO_LOW_RESOLUTION

The provided logo is below the recommended resolution for print quality.

Severityinfo
Categorydesign
Agent-repairableYes

What happened

The logo URL resolves to an image below the recommended resolution for PDF rendering. The PDF was generated with the logo, but it may appear pixelated at print quality.

How to fix

PDFs render at 300 DPI. A logo displayed at 200px wide needs a source resolution of at least 600px. The best option is an SVG (infinitely scalable):

// Before — low-res PNG
theme: { logo_url: "https://example.com/logo-64px.png" }
 
// After — SVG preferred, or high-res PNG
theme: { logo_url: "https://example.com/logo.svg" }

Recommendation

Always provide an SVG logo if available. SVGs scale perfectly to any resolution and produce the sharpest output in print-quality PDFs.

On this page