PDFdev is a service provided by PDFzone.com | http://www.pdfzone.com _____________________________________________________________

> bboxRec.right 21954560

I receive the digest, so this may already have been answered, but you are seeing an ASFixed number that uses a 4-byte integer to represent a fractional number. The Acrobat Core API Overview document describes Fixed-point math in detail, including the following call which should help you understand the conversion:

#define ASInt16ToFixed(i) ((ASFixed)(i) << 16)

The Enfocus browser is showing you the rectangle as an array [ left top right bottom ], which is how it is stored in a PDF. If you care about the fractional part of the number, you would probably use a call like ASFixedToFloat, not the one quoted above.

Regards,
Dan-Ari



To change your subscription: http://www.pdfzone.com/discussions/lists-pdfdev.html



Reply via email to