blob: 8e364d2c113ec5093a0e2586daefd1441c242bba [file] [log] [blame]
// Copyright 2017 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
#ifndef CORE_FPDFAPI_PAGE_CPDF_ICCPROFILE_H_
#define CORE_FPDFAPI_PAGE_CPDF_ICCPROFILE_H_
#include <stdint.h>
#include <memory>
#include "core/fxcrt/retain_ptr.h"
#include "core/fxcrt/span.h"
class CPDF_StreamAcc;
namespace fxcodec {
class IccTransform;
} // namespace fxcodec
class CPDF_IccProfile final : public Retainable {
public:
CONSTRUCT_VIA_MAKE_RETAIN;
bool IsValid() const { return IsSRGB() || IsSupported(); }
bool IsSRGB() const { return m_bsRGB; }
bool IsSupported() const { return !!m_Transform; }
uint32_t GetComponents() const { return m_nSrcComponents; }
bool IsNormal() const;
void Translate(pdfium::span<const float> pSrcValues,
pdfium::span<float> pDestValues);
void TranslateScanline(pdfium::span<uint8_t> pDest,
pdfium::span<const uint8_t> pSrc,
int pixels);
private:
CPDF_IccProfile(RetainPtr<const CPDF_StreamAcc> stream_acc,
uint32_t expected_components);
~CPDF_IccProfile() override;
// Keeps stream alive for the lifetime of this object, so `m_Transform` can
// safely access the stream data.
RetainPtr<const CPDF_StreamAcc> const m_pStreamAcc;
// Uses data from `m_pStreamAcc`.
std::unique_ptr<fxcodec::IccTransform> m_Transform;
const bool m_bsRGB;
uint32_t m_nSrcComponents = 0;
};
#endif // CORE_FPDFAPI_PAGE_CPDF_ICCPROFILE_H_