mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62532 954022d7-b5bf-4e40-9824-e11837661b57
25 lines
469 B
C++
25 lines
469 B
C++
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class CJBig2File
|
|
{
|
|
public:
|
|
CJBig2File();
|
|
|
|
bool MemoryToJBig2(unsigned char* pBufferBGRA ,int BufferSize, int nWidth, int nHeight, std::wstring sDstFileName);
|
|
|
|
bool m_bDuplicateLineRemoval;
|
|
bool m_bPDFMode;
|
|
bool m_bSymbolMode;
|
|
bool m_bRefine;
|
|
bool m_bUpscale2x;
|
|
bool m_bUpscale4x;
|
|
bool m_bSegment;
|
|
double m_dTreshold;
|
|
int m_nBwTreshold;
|
|
|
|
std::wstring m_sBaseName;
|
|
std::string m_sOutputTreshold;
|
|
}; |