• 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/appearance.h"
6 
7 namespace pdfium::appearance {
8 
9 // ISO 32000-1:2008 spec, table 189.
10 // Entries in an appearance characteristics dictionary.
11 const char kR[] = "R";
12 const char kBC[] = "BC";
13 const char kBG[] = "BG";
14 const char kCA[] = "CA";
15 const char kRC[] = "RC";
16 const char kAC[] = "AC";
17 const char kI[] = "I";
18 const char kRI[] = "RI";
19 const char kIX[] = "IX";
20 
21 }  // namespace pdfium::appearance
22