[mod] 0.3.6

This commit is contained in:
Andy Bunce 2025-06-01 18:00:17 +01:00
parent a3bef9d6f4
commit ed84a3b342
5 changed files with 64 additions and 14 deletions

4
doc.md
View file

@ -162,10 +162,10 @@ let $labels := pdfbox:labels($pdf)
---
### Getting Page Size
To get the size of a specific page, use the `pdfbox:page-size` function.
To get the size of a specific page, use the `pdfbox:page-media-box` function.
```xquery
let $size := pdfbox:page-size($pdf, 1) (: Get size of page 1 :)
let $size := pdfbox:page-media-box($pdf, 1) (: Get size of page 1 :)
```
---