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

JPG pixel coordinates to PDF coordinates converter?

New Here ,
Feb 04, 2019 Feb 04, 2019

Copy link to clipboard

Copied

Hello,

Does anyone have a tool or know of the pixel conversions for a JPG image point to PDF document location?

Regards,

William Johnston

TOPICS
Acrobat SDK and JavaScript

Views

3.2K

Translate

Translate

Report

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 , Feb 04, 2019 Feb 04, 2019

Images are images, regardless of the file format they are all an array of pixels. The PDF  coordinate spaces are all measured at 72points/inch.  So if you know the image location, width, and height in PDF coordinates, then it's a straight forward conversion to find the location of a pixel.

For example, to get the horizontal coordinate:

xPDF = xImageCoord + xPixel * ImageWidthPDF/ImageWidthPixels

Of course, how this is done depends on the context. What are you trying to do?

Votes

Translate

Translate
Community Expert ,
Feb 04, 2019 Feb 04, 2019

Copy link to clipboard

Copied

Images are images, regardless of the file format they are all an array of pixels. The PDF  coordinate spaces are all measured at 72points/inch.  So if you know the image location, width, and height in PDF coordinates, then it's a straight forward conversion to find the location of a pixel.

For example, to get the horizontal coordinate:

xPDF = xImageCoord + xPixel * ImageWidthPDF/ImageWidthPixels

Of course, how this is done depends on the context. What are you trying to do?

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

Votes

Translate

Translate

Report

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 ,
Feb 06, 2019 Feb 06, 2019

Copy link to clipboard

Copied

LATEST

Hello,

I would like to insert highlighted text from JPG images from Microsoft Azure Computer Vision OCR API.

Thanks for letting me know on the dpi for PDF.

I may need to create a formula.

Thank you.

Sincerely,

William Johnston

Votes

Translate

Translate

Report

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