1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
//========================================================================
//
// Modified pdftohtml (constans@molspaces.com, 2014)
//
// HTMLGen.h
//
// Copyright 2010 Glyph & Cog, LLC
//
//========================================================================
#ifndef HTMLGEN_H
#define HTMLGEN_H
#include <aconf.h>
#ifdef USE_GCC_PRAGMAS
#pragma interface
#endif
class PDFDoc;
class TextOutputDev;
class SplashOutputDev;
//------------------------------------------------------------------------
class HTMLGen
{
public:
HTMLGen();
~HTMLGen();
GBool isOk() const
{
return ok;
}
GBool getDrawInvisibleText() const
{
return drawInvisibleText;
}
void setDrawInvisibleText(GBool drawInvisibleTextA)
{
drawInvisibleText = drawInvisibleTextA;
}
void startDoc(PDFDoc* docA);
int convertPage(int pg, int (*writeHTML)(void* stream, const char* data, int size), void* htmlStream);
private:
double backgroundResolution;
GBool drawInvisibleText;
PDFDoc* doc;
TextOutputDev* textOut;
SplashOutputDev* splashOut;
GBool ok;
};
#endif
|