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
stream_dict_common.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/stream_dict_common.h"
6
7namespace pdfium::stream {
8
9// PDF 1.7 spec, table 3.4.
10// Entries common to all stream dictionaries.
11//
12// TODO(https://crbug.com/pdfium/1049): Examine all usages of "Length",
13// "Filter", and "F".
14const char kLength[] = "Length";
15const char kFilter[] = "Filter";
16const char kDecodeParms[] = "DecodeParms";
17const char kF[] = "F";
18const char kDL[] = "DL";
19
20} // namespace pdfium::stream
const char kDecodeParms[]