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
cfx_bitmapcomposer.h
Go to the documentation of this file.
1// Copyright 2017 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#ifndef CORE_FXGE_DIB_CFX_BITMAPCOMPOSER_H_
8#define CORE_FXGE_DIB_CFX_BITMAPCOMPOSER_H_
9
10#include <stdint.h>
11
12#include "core/fxcrt/data_vector.h"
13#include "core/fxcrt/retain_ptr.h"
14#include "core/fxcrt/unowned_ptr.h"
15#include "core/fxge/dib/cfx_scanlinecompositor.h"
16#include "core/fxge/dib/fx_dib.h"
17#include "core/fxge/dib/scanlinecomposer_iface.h"
18
19class CFX_ClipRgn;
20class CFX_DIBitmap;
21struct FX_RECT;
22
23class CFX_BitmapComposer final : public ScanlineComposerIface {
24 public:
26 ~CFX_BitmapComposer() override;
27
28 void Compose(const RetainPtr<CFX_DIBitmap>& pDest,
29 const CFX_ClipRgn* pClipRgn,
30 float alpha,
31 uint32_t mask_color,
32 const FX_RECT& dest_rect,
33 bool bVertical,
34 bool bFlipX,
35 bool bFlipY,
36 bool bRgbByteOrder,
37 BlendMode blend_mode);
38
39 // ScanlineComposerIface:
40 bool SetInfo(int width,
41 int height,
42 FXDIB_Format src_format,
43 DataVector<uint32_t> src_palette) override;
44 void ComposeScanline(int line, pdfium::span<const uint8_t> scanline) override;
45
46 private:
47 void DoCompose(pdfium::span<uint8_t> dest_scan,
48 pdfium::span<const uint8_t> src_scan,
49 int dest_width,
50 pdfium::span<const uint8_t> clip_scan);
51 void ComposeScanlineV(int line, pdfium::span<const uint8_t> scanline);
52
53 RetainPtr<CFX_DIBitmap> m_pBitmap;
54 UnownedPtr<const CFX_ClipRgn> m_pClipRgn;
55 FXDIB_Format m_SrcFormat;
56 int m_DestLeft;
57 int m_DestTop;
58 int m_DestWidth;
59 int m_DestHeight;
60 float m_Alpha;
61 uint32_t m_MaskColor;
62 RetainPtr<CFX_DIBitmap> m_pClipMask;
63 CFX_ScanlineCompositor m_Compositor;
64 bool m_bVertical;
65 bool m_bFlipX;
66 bool m_bFlipY;
67 bool m_bRgbByteOrder = false;
68 BlendMode m_BlendMode = BlendMode::kNormal;
69 DataVector<uint8_t> m_pScanlineV;
70 DataVector<uint8_t> m_pClipScanV;
71 DataVector<uint8_t> m_pAddClipScan;
72};
73
74#endif // CORE_FXGE_DIB_CFX_BITMAPCOMPOSER_H_
~CFX_BitmapComposer() override
void Compose(const RetainPtr< CFX_DIBitmap > &pDest, const CFX_ClipRgn *pClipRgn, float alpha, uint32_t mask_color, const FX_RECT &dest_rect, bool bVertical, bool bFlipX, bool bFlipY, bool bRgbByteOrder, BlendMode blend_mode)
void ComposeScanline(int line, pdfium::span< const uint8_t > scanline) override
bool SetInfo(int width, int height, FXDIB_Format src_format, DataVector< uint32_t > src_palette) override
bool Create(int width, int height, FXDIB_Format format, RetainPtr< CFX_DIBitmap > pBackdropBitmap)
FX_RECT GetOuterRect() const
bool Continue(PauseIndicatorIface *pPause)
CFX_ImageRenderer(const RetainPtr< CFX_DIBitmap > &pDevice, const CFX_ClipRgn *pClipRgn, RetainPtr< const CFX_DIBBase > source, float alpha, uint32_t mask_color, const CFX_Matrix &matrix, const FXDIB_ResampleOptions &options, bool bRgbByteOrder)
CFX_Matrix & operator=(const CFX_Matrix &other)=default
void Translate(int32_t x, int32_t y)
CFX_FloatRect GetUnitRect() const
void Translate(float x, float y)
void Transform(const CFX_Matrix &matrix)
Definition cfx_path.cpp:392
void AppendRect(float left, float bottom, float right, float top)
Definition cfx_path.cpp:309
bool IsPattern() const
static CPDF_DocPageData * FromDocument(const CPDF_Document *pDoc)
float GetStrokeAlpha() const
BlendMode GetBlendType() const
CPDF_ImageRenderer(CPDF_RenderStatus *pStatus)
bool Start(RetainPtr< CFX_DIBBase > pDIBBase, FX_ARGB bitmap_argb, const CFX_Matrix &mtImage2Device, const FXDIB_ResampleOptions &options, bool bStdCS)
bool Continue(PauseIndicatorIface *pPause)
bool Start(CPDF_ImageObject *pImageObject, const CFX_Matrix &mtObj2Device, bool bStdCS, BlendMode blendType)
CPDF_Document * GetDocument() const override
Definition cpdf_page.cpp:51
const Options & GetOptions() const
bool CheckOCGDictVisible(const CPDF_Dictionary *pOC) const
bool ColorModeIs(Type mode) const
void SetOptions(const CPDF_RenderOptions &options)
void SetStdCS(bool bStdCS)
void Initialize(const CPDF_RenderStatus *pParentStatus, const CPDF_GraphicStates *pInitialStates)
#define FXARGB_MUL_ALPHA(argb, alpha)
Definition fx_dib.h:128
BlendMode
Definition fx_dib.h:49
#define FXARGB_B(argb)
Definition fx_dib.h:127
#define FXARGB_G(argb)
Definition fx_dib.h:126
constexpr FX_ARGB ArgbEncode(uint32_t a, uint32_t r, uint32_t g, uint32_t b)
Definition fx_dib.h:118
#define FXARGB_R(argb)
Definition fx_dib.h:125
FXDIB_Format
Definition fx_dib.h:19
int FXSYS_roundf(float f)
Definition fx_system.cpp:92
#define FXRC_BLEND_MODE
bool bInterpolateBilinear
Definition fx_dib.h:41
int Height() const
int32_t bottom
int32_t right
int Width() const
int32_t top
int32_t left
bool IsEmpty() const