> On 10 Mar 2016, at 13:14, Blake McBride <[email protected]> wrote: > > Hi, > > Using 2.x here. I understand that I need to exit text mode via > contentStream.endText() before printing things like lines. Fine. But, if > I contentStream.endText(), and print some lines, how can I re-enable text > mode? I tried contentStream.beginText() but it didn't work. Sure > appreciate any help!
These methods just emit PDF’s begin text (BT) and end text (ET) operators. Basically, you only need to use them when you switch between text and graphics. You can put as many lines and paragraphs of text as you like inside a single BT, ET pair: BT text…. text.... text... ET The text operators between BT and ET can draw text, update the text matrix, make new lines, etc. Note that BT, ET are *never* nested. > Blake McBride --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

