为什么 LuaLaTeX 不接受 PDF 文件中的这种日期格式?

为什么 LuaLaTeX 不接受 PDF 文件中的这种日期格式?

下面是完整的 MWE,用于修改 PDF 文件并将其包含在内lualatex,但失败了:

wget https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf -O dummy.pdf
grep -a Date dummy.pdf
sed -E "s-/CreationDate\(D:.*\)-/CreationDate(D:19700101000000)-" -i dummy.pdf
grep -a Date dummy.pdf
echo "\documentclass{article}\usepackage{graphicx}\begin{document}\includegraphics{dummy.pdf}\end{document}" | lualatex

该文件非常简单:

\documentclass{article}
\usepackage{graphicx}
\begin{document}
    \includegraphics{dummy.pdf}
\end{document}

错误是:

! error:  (file dummy.pdf) (pdf inclusion): reading image failed

似乎lualatex不喜欢截断的 PDF 日期 - 这个变体工作正常:

wget https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf -O dummy.pdf
grep -a Date dummy.pdf
sed -E "s-/CreationDate\(D:.*\)-/CreationDate(D:19700101000000+01'00')-" -i dummy.pdf
grep -a Date dummy.pdf
echo "\documentclass{article}\usepackage{graphicx}\begin{document}\includegraphics{dummy.pdf}\end{document}" | lualatex

但我认为lualatex这里太挑剔了,因为修改后的 PDF 文件的日期是有效的。比较https://www.oreilly.com/library/view/pdf-explained/9781449321581/ch04.html

年份之后的日期部分都是可选的。例如,(D:1999)是完全有效的。

相关内容