Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
page_object.cpp
Go to the documentation of this file.
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
7namespace pdfium::page_object {
8
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
22} // namespace pdfium::page_object
const char kArtBox[]
const char kResources[]
const char kMediaBox[]
const char kBleedBox[]
const char kParent[]
const char kRotate[]
const char kContents[]
const char kCropBox[]
const char kTrimBox[]