|
|
@ -710,7 +710,7 @@ static const PDFRectangle *get_pagebox(Page * page, int pagebox_spec) |
|
|
|
|
|
|
|
int |
|
|
|
read_pdf_info(char *image_name, char *page_name, int page_num, |
|
|
|
int pagebox_spec, int major_pdf_version_wanted, int minor_pdf_version_wanted, |
|
|
|
int pagebox_spec, int minor_pdf_version_wanted, |
|
|
|
int pdf_inclusion_errorlevel) |
|
|
|
{ |
|
|
|
PdfDocument *pdf_doc; |
|
|
@ -738,16 +738,16 @@ read_pdf_info(char *image_name, char *page_name, int page_num, |
|
|
|
#ifdef POPPLER_VERSION |
|
|
|
pdf_major_version_found = pdf_doc->doc->getPDFMajorVersion(); |
|
|
|
pdf_minor_version_found = pdf_doc->doc->getPDFMinorVersion(); |
|
|
|
if ((pdf_major_version_found > major_pdf_version_wanted) |
|
|
|
if ((pdf_major_version_found > 1) |
|
|
|
|| (pdf_minor_version_found > minor_pdf_version_wanted)) { |
|
|
|
const char *msg = |
|
|
|
"PDF inclusion: found PDF version <%d.%d>, but at most version <%d.%d> allowed"; |
|
|
|
"PDF inclusion: found PDF version <%d.%d>, but at most version <1.%d> allowed"; |
|
|
|
if (pdf_inclusion_errorlevel > 0) { |
|
|
|
pdftex_fail(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); |
|
|
|
pdftex_fail(msg, pdf_major_version_found, pdf_minor_version_found, minor_pdf_version_wanted); |
|
|
|
} else if (pdf_inclusion_errorlevel < 0) { |
|
|
|
; /* do nothing */ |
|
|
|
} else { /* = 0, give warning */ |
|
|
|
pdftex_warn(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); |
|
|
|
pdftex_warn(msg, pdf_major_version_found, pdf_minor_version_found, minor_pdf_version_wanted); |
|
|
|
} |
|
|
|
} |
|
|
|
#else |
|
|
|