Files
core/DesktopEditor/raster/JBig2/source/JBig2File.h
Elen.Subbotina 037a8b9c15 jbig2
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62532 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:02:26 +03:00

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;
};