blob: 45d3020c2945baa87ef2a85578956db69c3eb118 [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2021 The PDFium Authors
Lei Zhangef235032021-06-08 08:23:28 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "constants/page_object.h"
6
Tom Sepez909a33c2023-08-10 19:17:01 +00007namespace pdfium::page_object {
Lei Zhangef235032021-06-08 08:23:28 +00008
9// PDF 1.7 spec, table 3.27.
10// Entries in a page object.
11const char kType[] = "Type";
12const char kParent[] = "Parent";
13const char kResources[] = "Resources";
14const char kMediaBox[] = "MediaBox";
15const char kCropBox[] = "CropBox";
16const char kBleedBox[] = "BleedBox";
17const char kTrimBox[] = "TrimBox";
18const char kArtBox[] = "ArtBox";
19const char kContents[] = "Contents";
20const char kRotate[] = "Rotate";
21
Tom Sepez909a33c2023-08-10 19:17:01 +000022} // namespace pdfium::page_object