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

JPG pixel coordinates to PDF coordinates converter?

New Here ,
Feb 04, 2019 Feb 04, 2019

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
4.0K
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 , 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?

Translate
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?

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

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