Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How can I detect the fontsize of a character in a pdf document using javascript

New Here ,
Mar 10, 2018 Mar 10, 2018

I would like to automatically identify and edit the headlines of pdf text documents (newspaper articles). As the fontsize of headlines use to be larger than the text body, I could identify the beginning and the end of a headline by screening the fontsize changes of characters. Unfortunatelly I have not yet found a javascript method of dectecting fontsizes, while this information is provided in the UI - even for proprietary fonts. Can anybody help?

TOPICS
Acrobat SDK and JavaScript , Windows
627
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 10, 2018 Mar 10, 2018

Use the "doc.getPageNthWordQuads()" function.  It returns 4 points, one for each corner of the bounding box of a word on the page. The height of this box is the font size.

Translate
Community Expert ,
Mar 10, 2018 Mar 10, 2018

Use the "doc.getPageNthWordQuads()" function.  It returns 4 points, one for each corner of the bounding box of a word on the page. The height of this box is the font size.

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 10, 2018 Mar 10, 2018
LATEST

Many thanks for this advice. It works perfectly.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 10, 2018 Mar 10, 2018

You can't edit static text using a script, though. Not directly, anyway.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines