For the sake of those who may come after, here is the reply from the module author:
The error you get occurs when PDF::Reuse tries to transform a page to an "XObject". There are many content streams forming the page and the program doesn't continue. Most often the procedure to concatenate streams really works. I think it has only happened to me once, that it didn't. Then Acrobat refused to change anything with the text. The font was strange and Acrobat couldn't do anything with it. Your case might be one of these cases.

Anyway, you could perhaps try to use prSinglePage instead. It accepts many content streams for one page, but you have to change your code a little. Look at the documentation. prSinglePage creates a new content stream of all your new text, and adds it to the array of streams. It puts it at the end of the array. So if it is possible, try prSinglePage.

jdtoronto

In reply to Re: PDF::Reuse issue with streams by jdtoronto
in thread PDF::Reuse issue with streams by jdtoronto

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.