PeterSlezak

Results 21 comments of PeterSlezak

@plasticassius Here are example pdf files outlines. 1. [outlines_action_goto.pdf](https://github.com/pmaupin/pdfrw/files/2679144/outlines_action_goto.pdf) - I took it from #52 discussion [here](https://github.com/pmaupin/pdfrw/issues/52#issuecomment-271171552). 2. [sample_nametrees.pdf](https://github.com/pmaupin/pdfrw/files/2679159/sample_nametrees.pdf) - original is from [here](http://www.stluciadance.com/prospectus_file/sample.pdf). It is similar to the previous...

Files may looks like read-only probably, because some document changes are not permitted. ![image](https://user-images.githubusercontent.com/7223040/50040829-2718e180-004b-11e9-958c-4f60b71c5ed2.png) What is exactly your goal? If you want to modify file but preserve valid signature, then...

> I looked at your sample_nametrees.pdf file, and `reader.pages[page] is elt.A.D[0]` doesn't pick up anything. It seems that there is another layer of indirection, so that `elt.A.D[0]` doesn't refer to...

I think I get your point now. The issue may be cause by pdfrw.PdfWriter. It changes the content of pdf file (by file I mean the bytes of the binary...

The only point I can think of is when signed document is saved with incremental updates then it is possible to undo the changes and recreate the document state as...

Pdfrw sets pdf file version to 1.3. To the best of my knowledge 1.3 did not support transparency (transparency was added in version 1.4). If the file is really a...

See #84, it's similar problem.

It's old post but if you're interested see my comment on #84. I've used you're sampe template pdf file to populate first text field. It can fix the first issue.

I think you want to see is #37 So for now you can use: `writer.trailer.Root.ViewerPreferences = PdfDict(FitWindow=PdfObject('true'))`

I had a similar problem where I wanted to add a link annotation which is very similar to the above problem. I made it work so if anyone is interested,...