diff --git a/ccmain/tesseractclass.cpp b/ccmain/tesseractclass.cpp index bd23830d28..69613cc349 100644 --- a/ccmain/tesseractclass.cpp +++ b/ccmain/tesseractclass.cpp @@ -389,7 +389,7 @@ Tesseract::Tesseract() this->params()), BOOL_MEMBER(tessedit_create_pdf, false, "Write .pdf output file", this->params()), - BOOL_MEMBER(textonly_pdf, false, "Invisible text only for PDF", + BOOL_MEMBER(textonly_pdf, false, "Create PDF with only one invisible text layer", this->params()), STRING_MEMBER(unrecognised_char, "|", "Output char for unidentified blobs", this->params()), diff --git a/ccmain/tesseractclass.h b/ccmain/tesseractclass.h index 472fd4318c..815503bad3 100644 --- a/ccmain/tesseractclass.h +++ b/ccmain/tesseractclass.h @@ -1026,7 +1026,7 @@ class Tesseract : public Wordrec { BOOL_VAR_H(tessedit_create_hocr, false, "Write .html hOCR output file"); BOOL_VAR_H(tessedit_create_tsv, false, "Write .tsv output file"); BOOL_VAR_H(tessedit_create_pdf, false, "Write .pdf output file"); - BOOL_VAR_H(textonly_pdf, false, "Invisible text only for PDF"); + BOOL_VAR_H(textonly_pdf, false, "Create PDF with only one invisible text layer"); STRING_VAR_H(unrecognised_char, "|", "Output char for unidentified blobs"); INT_VAR_H(suspect_level, 99, "Suspect marker level");