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
cpdf_defaultappearance.cpp
Go to the documentation of this file.
1// Copyright 2016 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// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#include "core/fpdfdoc/cpdf_defaultappearance.h"
8
9#include <algorithm>
10#include <vector>
11
12#include "core/fpdfapi/parser/cpdf_simple_parser.h"
13#include "core/fpdfapi/parser/fpdf_parser_utility.h"
14#include "core/fxcrt/fx_string.h"
15#include "core/fxge/cfx_color.h"
16#include "third_party/base/notreached.h"
17
18namespace {
19
20// Find the token and its |nParams| parameters from the start of data,
21// and move the current position to the start of those parameters.
22bool FindTagParamFromStart(CPDF_SimpleParser* parser,
23 ByteStringView token,
24 int nParams) {
25 nParams++;
26
27 std::vector<uint32_t> pBuf(nParams);
28 int buf_index = 0;
29 int buf_count = 0;
30
31 parser->SetCurPos(0);
32 while (true) {
33 pBuf[buf_index++] = parser->GetCurPos();
34 if (buf_index == nParams)
35 buf_index = 0;
36
37 buf_count++;
38 if (buf_count > nParams)
39 buf_count = nParams;
40
41 ByteStringView word = parser->GetWord();
42 if (word.IsEmpty())
43 return false;
44
45 if (word == token) {
46 if (buf_count < nParams)
47 continue;
48
49 parser->SetCurPos(pBuf[buf_index]);
50 return true;
51 }
52 }
53}
54
55} // namespace
56
58
60 : m_csDA(csDA) {}
61
63 const CPDF_DefaultAppearance& cDA) = default;
64
66
68 float* fFontSize) const {
69 *fFontSize = 0.0f;
70 if (m_csDA.IsEmpty())
71 return absl::nullopt;
72
73 ByteString csFontNameTag;
74 CPDF_SimpleParser syntax(m_csDA.AsStringView().raw_span());
75 if (FindTagParamFromStart(&syntax, "Tf", 2)) {
76 csFontNameTag = ByteString(syntax.GetWord());
77 csFontNameTag.Delete(0, 1);
78 *fFontSize = StringToFloat(syntax.GetWord());
79 }
80 return PDF_NameDecode(csFontNameTag.AsStringView());
81}
82
84 if (m_csDA.IsEmpty())
85 return absl::nullopt;
86
87 CPDF_SimpleParser syntax(m_csDA.AsStringView().raw_span());
88 if (FindTagParamFromStart(&syntax, "g", 1)) {
89 float gray = StringToFloat(syntax.GetWord());
91 }
92 if (FindTagParamFromStart(&syntax, "rg", 3)) {
93 float r = StringToFloat(syntax.GetWord());
94 float g = StringToFloat(syntax.GetWord());
95 float b = StringToFloat(syntax.GetWord());
97 }
98 if (FindTagParamFromStart(&syntax, "k", 4)) {
99 float c = StringToFloat(syntax.GetWord());
100 float m = StringToFloat(syntax.GetWord());
101 float y = StringToFloat(syntax.GetWord());
102 float k = StringToFloat(syntax.GetWord());
104 }
105 return absl::nullopt;
106}
107
109 const {
110 absl::optional<CFX_Color> maybe_color = GetColor();
111 if (!maybe_color.has_value())
112 return absl::nullopt;
113
114 const CFX_Color& color = maybe_color.value();
116 int g = static_cast<int>(color.fColor1 * 255 + 0.5f);
118 ArgbEncode(255, g, g, g));
119 }
121 int r = static_cast<int>(color.fColor1 * 255 + 0.5f);
122 int g = static_cast<int>(color.fColor2 * 255 + 0.5f);
123 int b = static_cast<int>(color.fColor3 * 255 + 0.5f);
125 ArgbEncode(255, r, g, b));
126 }
128 float r = 1.0f - std::min(1.0f, color.fColor1 + color.fColor4);
129 float g = 1.0f - std::min(1.0f, color.fColor2 + color.fColor4);
130 float b = 1.0f - std::min(1.0f, color.fColor3 + color.fColor4);
133 ArgbEncode(255, static_cast<int>(r * 255 + 0.5f),
134 static_cast<int>(g * 255 + 0.5f),
135 static_cast<int>(b * 255 + 0.5f)));
136 }
137 NOTREACHED_NORETURN();
138}
139
140// static
142 CPDF_SimpleParser* parser,
143 ByteStringView token,
144 int nParams) {
145 return FindTagParamFromStart(parser, token, nParams);
146}
CPDF_DefaultAppearance(const ByteString &csDA)
absl::optional< ByteString > GetFont(float *fFontSize) const
static bool FindTagParamFromStartForTesting(CPDF_SimpleParser *parser, ByteStringView token, int nParams)
absl::optional< CFX_Color > GetColor() const
CPDF_DefaultAppearance(const CPDF_DefaultAppearance &cDA)
absl::optional< CFX_Color::TypeAndARGB > GetColorARGB() const
uint32_t GetCurPos() const
void SetCurPos(uint32_t pos)
ByteStringView GetWord()
ByteString & operator=(ByteString &&that) noexcept
constexpr FX_ARGB ArgbEncode(uint32_t a, uint32_t r, uint32_t g, uint32_t b)
Definition fx_dib.h:118
TypeAndARGB(CFX_Color::Type type_in, FX_ARGB argb_in)
Definition cfx_color.h:17
float fColor4
Definition cfx_color.h:58
float fColor3
Definition cfx_color.h:57
Type nColorType
Definition cfx_color.h:54
constexpr CFX_Color(Type type=CFX_Color::Type::kTransparent, float color1=0.0f, float color2=0.0f, float color3=0.0f, float color4=0.0f)
Definition cfx_color.h:27
float fColor2
Definition cfx_color.h:56
float fColor1
Definition cfx_color.h:55