yWorks / svg2pdf.js

A javascript-only SVG to PDF conversion utility that runs in the browser. Brought to you by yWorks - the diagramming experts
MIT License
646 stars 96 forks source link

PDF Mediabox Size | Outdated Limit #213

Closed JacobAltar closed 11 months ago

JacobAltar commented 2 years ago

In PDF Version 1.6 (Acrobat 7.0) and newer the theoretical PDF page size is 15,000,000"x15,000,000". svg2pdf.js is currently limited to 200" X 200". That does not cut it for large format banners.

Please adjust the following...

(n>14400||o>14400)&&(i.warn("A page in a PDF can not be wider or taller than 14400 userUnit. jsPDF limits the width/height to 14400"),n=Math.min(14400,n),o=Math.min(14400,o))

HackbrettXXX commented 11 months ago

This is an issue in jsPDF. Please create an issue there.