Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am generating PDF files directly with basic Python3 (no pdf dedicated library used) to make linearized PDF with optimized features. I am now facing the problem to make hyperlinks (internal or external).

According to the spec, I have to declare an "annots" array in the "ressource" of the "page" object, and I add new objects "annot" that define the clickable rectangle zone.

I would like to save and restore the x, y, width and height of this rectangle when I build the page content object (in a stream), so I don't have to compute that rectangle size and position by parsing the AFM files of the fonts to get bounding box of the linked words.

Is it possible using the PDF language ? Is there another way to make hyperlinks, for instance inside a stream? The best would be a simple PDF example.

Note that I am using only the Adobe 14basefonts, so glyphs widths are not copied in the pdf file.

Do not propose me to use a library, I need to understand the internal.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.