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
I try to modify sth in pdf (hidden the secret message in pdf), follow the doc
constctx=writer.getObjectsContext();ctx.startModifiedIndirectObject(i)// do sthctx.endIndirectObject()
It works perfect, but the only things is that startModifiedIndirectObject will always create new object instead replace old one in the real pdf file
It will append some new info after the end of pdf file
And if I exec 10 times, it will append 10 times these sections..... so file will big and big. And the secret message I want to changed is still in the real pdf
How can I optimize the real pdf file ?
The text was updated successfully, but these errors were encountered:
I try to modify sth in pdf (hidden the secret message in pdf), follow the doc
It works perfect, but the only things is that
startModifiedIndirectObject
will always create new object instead replace old one in the real pdf fileIt will append some new info after the end of pdf file
And if I exec 10 times, it will append 10 times these sections..... so file will big and big. And the secret message I want to changed is still in the real pdf
How can I optimize the real pdf file ?
The text was updated successfully, but these errors were encountered: