mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63665 954022d7-b5bf-4e40-9824-e11837661b57
27 lines
920 B
C++
27 lines
920 B
C++
#ifndef _PDF_WRITER_SRC_PATTERN_H
|
|
#define _PDF_WRITER_SRC_PATTERN_H
|
|
|
|
#include "Objects.h"
|
|
|
|
namespace PdfWriter
|
|
{
|
|
class CImageDict;
|
|
//----------------------------------------------------------------------------------------
|
|
// CPattern
|
|
//----------------------------------------------------------------------------------------
|
|
class CPattern : public CDictObject
|
|
{
|
|
public:
|
|
CPattern(CXref* pXref);
|
|
};
|
|
//----------------------------------------------------------------------------------------
|
|
// CImageTilePattern
|
|
//----------------------------------------------------------------------------------------
|
|
class CImageTilePattern : public CPattern
|
|
{
|
|
public:
|
|
CImageTilePattern(CXref* pXref, const double& dW, const double& dH, CImageDict* pImageDict, CMatrix* pMatrix = NULL, EImageTilePatternType eType = imagetilepatterntype_Default);
|
|
};
|
|
}
|
|
|
|
#endif // _PDF_WRITER_SRC_PATTERN_H
|