Skip to content

Commit 92e2912

Browse files
author
David Thornley
committed
Fix missing default parameter value cause compile to fail.
1 parent 31aeb53 commit 92e2912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/renderer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class TESS_API TessPDFRenderer : public TessResultRenderer {
187187
public:
188188
// datadir is the location of the TESSDATA. We need it because
189189
// we load a custom PDF font from this location.
190-
TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality);
190+
TessPDFRenderer(const char* outputbase, const char* datadir, bool textonly = false, int jpg_quality = 85);
191191

192192
protected:
193193
virtual bool BeginDocumentHandler();

0 commit comments

Comments
 (0)