blob: b8ac37493b05f90fa4e60203bf3d70dc23aa4259 [file] [log] [blame]
// Copyright 2016 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "core/fpdfapi/render/cpdf_renderoptions.h"
namespace {
constexpr uint32_t kCacheSizeLimitBytes = 100 * 1024 * 1024;
} // namespace
CPDF_RenderOptions::Options::Options() = default;
CPDF_RenderOptions::Options::Options(const CPDF_RenderOptions::Options& rhs) =
default;
CPDF_RenderOptions::Options& CPDF_RenderOptions::Options::operator=(
const CPDF_RenderOptions::Options& rhs) = default;
CPDF_RenderOptions::CPDF_RenderOptions() {
// TODO(thestig): Make constexpr to initialize |m_Options| once C++14 is
// available.
m_Options.bClearType = true;
}
CPDF_RenderOptions::CPDF_RenderOptions(const CPDF_RenderOptions& rhs) = default;
CPDF_RenderOptions::~CPDF_RenderOptions() = default;
FX_ARGB CPDF_RenderOptions::TranslateColor(FX_ARGB argb) const {
if (ColorModeIs(kNormal))
return argb;
if (ColorModeIs(kAlpha))
return argb;
int a;
int r;
int g;
int b;
std::tie(a, r, g, b) = ArgbDecode(argb);
int gray = FXRGB2GRAY(r, g, b);
return ArgbEncode(a, gray, gray, gray);
}
FX_ARGB CPDF_RenderOptions::TranslateObjectFillColor(
FX_ARGB argb,
CPDF_PageObject::Type object_type) const {
if (!ColorModeIs(kForcedColor)) {
return TranslateColor(argb);
}
switch (object_type) {
case CPDF_PageObject::Type::kPath:
return m_ColorScheme.path_fill_color;
case CPDF_PageObject::Type::kText:
return m_ColorScheme.text_fill_color;
default:
return argb;
}
}
FX_ARGB CPDF_RenderOptions::TranslateObjectStrokeColor(
FX_ARGB argb,
CPDF_PageObject::Type object_type) const {
if (!ColorModeIs(kForcedColor)) {
return TranslateColor(argb);
}
switch (object_type) {
case CPDF_PageObject::Type::kPath:
return m_ColorScheme.path_stroke_color;
case CPDF_PageObject::Type::kText:
return m_ColorScheme.text_stroke_color;
default:
return argb;
}
}
uint32_t CPDF_RenderOptions::GetCacheSizeLimit() const {
return kCacheSizeLimitBytes;
}
bool CPDF_RenderOptions::CheckOCGDictVisible(const CPDF_Dictionary* pOC) const {
return !m_pOCContext || m_pOCContext->CheckOCGDictVisible(pOC);
}
bool CPDF_RenderOptions::CheckPageObjectVisible(
const CPDF_PageObject* pPageObj) const {
return !m_pOCContext || m_pOCContext->CheckPageObjectVisible(pPageObj);
}