/* * Copyright (c) 2021-2022, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace PDF { PDFErrorOr Page::page_contents(Document& document) const { // Table 3.27 Entries in a page object on Contents: // "If this entry is absent, the page is empty. [...]" if (contents.is_null()) return ByteBuffer {}; // "The value may be either a single stream or an array of streams. If the value // is an array, the effect is as if all the streams in the array were concatenated, // in order, to form a single stream." if (contents->is()) return TRY(ByteBuffer::copy(contents->cast()->bytes())); ByteBuffer byte_buffer; for (auto& ref : *contents->cast()) TRY(byte_buffer.try_append(TRY(document.resolve_to(ref))->bytes())); return byte_buffer; } }