K. Moon | 832a694 | 2022-10-31 20:11:31 +0000 | [diff] [blame] | 1 | // Copyright 2021 The PDFium Authors |
Lei Zhang | ef23503 | 2021-06-08 08:23:28 +0000 | [diff] [blame] | 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 | |
Tom Sepez | 909a33c | 2023-08-10 19:17:01 +0000 | [diff] [blame] | 7 | namespace pdfium::page_object { |
Lei Zhang | ef23503 | 2021-06-08 08:23:28 +0000 | [diff] [blame] | 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 | |
Tom Sepez | 909a33c | 2023-08-10 19:17:01 +0000 | [diff] [blame] | 22 | } // namespace pdfium::page_object |