blob: bb8fd8ed5fd640a9748706dd480795cb3cc09b04 [file] [log] [blame]
// Copyright 2020 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_FXGE_WIN32_CGDI_PLUS_EXT_H_
#define CORE_FXGE_WIN32_CGDI_PLUS_EXT_H_
#include <stdint.h>
#include <windows.h>
#include <vector>
#include "core/fxcrt/retain_ptr.h"
#include "core/fxcrt/span.h"
class CFX_DIBBase;
class CFX_GraphStateData;
class CFX_Matrix;
class CFX_Path;
struct CFX_FillRenderOptions;
struct FXDIB_ResampleOptions;
struct FX_RECT;
class CGdiplusExt {
public:
CGdiplusExt();
~CGdiplusExt();
void Load();
bool IsAvailable() { return !!gdiplus_module_; }
bool StretchDIBits(HDC hDC,
RetainPtr<const CFX_DIBBase> source,
int dest_left,
int dest_top,
int dest_width,
int dest_height,
const FX_RECT* pClipRect,
const FXDIB_ResampleOptions& options);
bool DrawPath(HDC hDC,
const CFX_Path& path,
const CFX_Matrix* pObject2Device,
const CFX_GraphStateData* pGraphState,
uint32_t fill_argb,
uint32_t stroke_argb,
const CFX_FillRenderOptions& fill_options);
pdfium::span<const FARPROC> functions() const { return gdiplus_functions_; }
private:
HMODULE gdiplus_module_ = nullptr;
std::vector<FARPROC> gdiplus_functions_;
};
#endif // CORE_FXGE_WIN32_CGDI_PLUS_EXT_H_