You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The left side is rendered using continued and the right side is rendered once using text, but the results are inconsistent.
Description of the problem
Code sample
// create a document and pipe to a blobvardoc=newPDFDocument();varstream=doc.pipe(blobStream());// draw some textvara='Click here to visit OpenAI website:'varb='The advent of Large Language Models (LLMs)'varc='end with a link'doc.fontSize(12)// leftdoc.text(a,20,20,{width: 200,continued: true}).text(b).text(c)// rightdoc.text(a+b+c,300,20,{width: 200,continued: true})// end and display the document in the iframe to the rightdoc.end();stream.on('finish',function(){iframe.src=stream.toBlobURL('application/pdf');});
Bug Report
The left side is rendered using
continued
and the right side is rendered once usingtext
, but the results are inconsistent.Description of the problem
Code sample
Your environment
https://pdfkit.org/demo/browser.html
The text was updated successfully, but these errors were encountered: