module Pdfpage:sig..end
Page-level functionality
type rotation =
| |
Rotate0 |
| |
Rotate90 |
| |
Rotate180 |
| |
Rotate270 |
The type of the four rotations of pages. This defines how a viewing application (e.g Acrobat) displays the page.
val int_of_rotation : rotation -> intUtility function to convert from rotation to integers.
val rotation_of_int : int -> rotationThe reverse. raises Pdf.PDFError if its input modulo 360 is not 0, 90, 180
or 270.
type t = {
|
content : |
|
mediabox : |
|
resources : |
|
rotate : |
|
rest : |
}
A type representing a page. content is the list of objects containing the
graphical content stream (see the Pdfpages module), mediabox the page size,
resources the page's resource dictionary, rotate its rotation and rest any
other entries to reside in the page dictionary.
val blankpage : Pdfpaper.t -> tCreate a page with empty content, media box from the given paper size, empty resources, zero rotation and no extra dictionary entries.
val custompage : Pdf.pdfobject -> tThe same, but given a page size rectangle.
val pages_of_pagetree : Pdf.t -> t listExtract the page tree from a PDF document and parse it to a list of page
objects. Owing to the rest entry in the page type, no information is lost.
val add_pagetree : t list -> Pdf.t -> Pdf.t * intBuild a page tree from a list of pages and install it in the given PDF document. The resultant document and the number of the new page root object are returned. If the document already contains a page root, it is overwritten but is not garbage collected.
val add_root : int -> (string * Pdf.pdfobject) list -> Pdf.t -> Pdf.tGiven the page root number (for instance that returned by add_pagetree),
any specific extra dictionary entries and a PDF document, build a document root.
Returns the new document. If a root exists, it is overwritten but is not garbage
collected.
val endpage : Pdf.t -> intNumber of pages in a document, faster than reading the pages and counting.
val endpage_fast : Pdf.t -> intNumber of pages in a document, simply believing top level /Count
val page_object_number : Pdf.t -> int -> int optionFind a page indirect from the page tree of a document, given a page number.
val renumber_pages : Pdf.t -> t list -> t listRename the resources within a number of page resource dictionaries and contents, so as to allow them to be merged without name clashes.
val change_pages : ?matrices:(int * Pdftransform.transform_matrix) list ->
?changes:(int * int) list -> bool -> Pdf.t -> t list -> Pdf.tChange the pages in a document for some new ones. If the boolean is true and the number of pages in the old and new documents are equal (or ~changes, a list of (from, to) page nummber changes, is provided), references to the old pages from outside the page tree (for instance in destinations or bookmarks) are renumbered. This ensures bookmarks are preserved correctly. A list of (page number, matrix) pairs may also be supplied if the boolean is true and the number of old and new pages are equal. This allows transformed pages (e.g scaled) to have their bookmark destionations pointed at correctly.
val pdf_of_pages : ?retain_numbering:bool ->
?process_struct_tree:bool -> Pdf.t -> int list -> Pdf.tReturn a pdf with a subset of pages, but nothing else changed - exactly the
same page object numbers, so bookmarks etc still work. Also modifies bookmarks
so only those in the range are kept, and other ancillary structures. If
retain_numbering is true, page numbers are kept from the original. If
process_struct_tree is true, the structure tree is trimmed.
val rectangle_of_paper : Pdfpaper.t -> Pdf.pdfobjectMake a PDF rectangle from a Paper.papersize.
val shortest_unused_prefix : Pdf.t -> stringFind the shortest lower-case alphabetic string which is not a prefix of any name in /Resources. This prefix can be added to the other PDF's names, and will never clash with any of these.
val add_prefix : Pdf.t -> string -> unitFor every page in the PDF, add the prefix to any name in /Resources and add the prefix to any name used in any content streams.
val protect : Pdfops.t list -> Pdfops.t listCalling protect pdf add stack operators to a pre-ISO
content stream to ensure it is composeable.
val prepend_operators : Pdf.t -> Pdfops.t list -> ?fast:bool -> t -> tAdd operators to the beginning of a page. If fast is set (default false),
don't check for mismatched stack operators.
val postpend_operators : Pdf.t -> Pdfops.t list -> ?fast:bool -> t -> tAdd operators to the end of a page. If fast is set (default false),
don't check for mismatched stack operators.
val pagenumber_of_target : ?fastrefnums:(int, int) Stdlib.Hashtbl.t -> Pdf.t -> Pdfdest.t -> intReturn a page number given a destination. Supply fastrefnums from a
previous call to Pdf.page_reference_numbers to speed things up.
val target_of_pagenumber : Pdf.t -> int -> Pdfdest.tBuild a basic Fit destintation from a page number of a PDF.
val minimum_valid_pdf : unit -> Pdf.tGenerate a PDF file with a single A4 page. Unlike Pdf.empty it is a fully
valid PDF.