serenity/Userland/Libraries/LibPDF/Page.cpp
Nico Weber afb99a67b2 LibPDF: Tweak Page::page_contents() implementation for brevity
Also replace a FIXME with a spec comment that answers it.
2023-07-12 18:22:35 -04:00

32 lines
1,011 B
C++

/*
* Copyright (c) 2021-2022, Matthew Olsson <mattco@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibPDF/Document.h>
#include <LibPDF/ObjectDerivatives.h>
#include <LibPDF/Page.h>
namespace PDF {
PDFErrorOr<ByteBuffer> 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<StreamObject>())
return TRY(ByteBuffer::copy(contents->cast<StreamObject>()->bytes()));
ByteBuffer byte_buffer;
for (auto& ref : *contents->cast<ArrayObject>())
TRY(byte_buffer.try_append(TRY(document.resolve_to<StreamObject>(ref))->bytes()));
return byte_buffer;
}
}