Fix missing default parameter value cause compile to fail.

This commit is contained in:
David Thornley 2018-09-14 09:56:06 +02:00
parent 31aeb534d9
commit 92e291250a

View File

@ -187,7 +187,7 @@ class TESS_API TessPDFRenderer : public TessResultRenderer {
public:
// datadir is the location of the TESSDATA. We need it because
// we load a custom PDF font from this location.
TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality);
TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality = 85);
protected:
virtual bool BeginDocumentHandler();