diff options
author | Matthew Olsson <matthewcolsson@gmail.com> | 2021-05-08 14:57:49 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-10 10:32:39 +0200 |
commit | 8c745ad0d9198db1cd078dff573353457294a840 (patch) | |
tree | 05cd0e85a7b49e3e6d57bdd71ae7f97c8bd823be /AK | |
parent | 72f693e9ed6b106e0760a3b1869f92d3267ddd41 (diff) | |
download | serenity-8c745ad0d9198db1cd078dff573353457294a840.zip |
LibPDF: Parse page structures
This commit introduces the ability to parse the document catalog dict,
as well as the page tree and individual pages. Pages obviously aren't
fully parsed, as we won't care about most of the fields until we
start actually rendering PDFs.
One of the primary benefits of the PDF format is laziness. PDFs are
not meant to be parsed all at once, and the same is true for pages.
When a Document is constructed, it builds a map of page number to
object index, but it does not fetch and parse any of the pages. A page
is only parsed when a caller requests that particular page (and is
cached going forwards).
Additionally, this commit also adds an object_cast function which
logs bad casts if DEBUG_PDF is set. Additionally, utility functions
were added to ArrayObject and DictObject to get all types of objects
from the collections to avoid having to manually cast.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Debug.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AK/Debug.h.in b/AK/Debug.h.in index 89c0fb1b5d..5b7d50fce7 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -286,6 +286,10 @@ #cmakedefine01 PATH_DEBUG #endif +#ifndef PDF_DEBUG +#cmakedefine01 PDF_DEBUG +#endif + #ifndef PNG_DEBUG #cmakedefine01 PNG_DEBUG #endif |