• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2021 The PDFium Authors
2 // 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 
7 namespace pdfium::page_object {
8 
9 // PDF 1.7 spec, table 3.27.
10 // Entries in a page object.
11 const char kType[] = "Type";
12 const char kParent[] = "Parent";
13 const char kResources[] = "Resources";
14 const char kMediaBox[] = "MediaBox";
15 const char kCropBox[] = "CropBox";
16 const char kBleedBox[] = "BleedBox";
17 const char kTrimBox[] = "TrimBox";
18 const char kArtBox[] = "ArtBox";
19 const char kContents[] = "Contents";
20 const char kRotate[] = "Rotate";
21 
22 }  // namespace pdfium::page_object
23