blob: 45d3020c2945baa87ef2a85578956db69c3eb118 [file] [log] [blame]
// Copyright 2021 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "constants/page_object.h"
namespace pdfium::page_object {
// PDF 1.7 spec, table 3.27.
// Entries in a page object.
const char kType[] = "Type";
const char kParent[] = "Parent";
const char kResources[] = "Resources";
const char kMediaBox[] = "MediaBox";
const char kCropBox[] = "CropBox";
const char kBleedBox[] = "BleedBox";
const char kTrimBox[] = "TrimBox";
const char kArtBox[] = "ArtBox";
const char kContents[] = "Contents";
const char kRotate[] = "Rotate";
} // namespace pdfium::page_object