aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF.cc')
-rw-r--r--libqpdf/QPDF.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/libqpdf/QPDF.cc b/libqpdf/QPDF.cc
index d82813d0..16641247 100644
--- a/libqpdf/QPDF.cc
+++ b/libqpdf/QPDF.cc
@@ -239,7 +239,9 @@ QPDF::parse(char const* password)
QTC::TC("qpdf", "QPDF not a pdf file");
warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(),
"", 0, "can't find PDF header"));
- this->pdf_version = "1.0";
+ // QPDFWriter writes files that usually require at least
+ // version 1.2 for /FlateDecode
+ this->pdf_version = "1.2";
}
if (atof(this->pdf_version.c_str()) < 1.2)
{