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.