I use imagemagick to render PDF (generated pdfLaTex) as the image:
convert -density 120 test.pdf -trim test.png
Then I use this image in an HTML file (to include latex code in my own wiki engine).
But, of course, the PNG file does not have the hyperlink contained in the PDF file.
Is it possible to retrieve the coordinates and destination URLs of hyperlinks, so I can create an HTML map?
If that matters: I only need external (http: //) hyperlinks, as well as hyperlinks to PDF-internal content. A text solution, such as pdftohtml, would be unacceptable, since there are graphics and formats in the PDF files.
source
share