I use TexLive and compile with lualatex.
I have some eps-images included, which get automatically converted to pdf files. (I assume TexLive does it, because I do not use the package epstopdf).
Everything works fine, unless that the generated pdfs are version 1.7 and I get a warning that this version is too high.
How do I automatically generate 1.4 pdfs, and why 1.7 pdfs are generated at all?.
Edit: If I add the package eps2pdf to my code, the produced pdfs are also version 1.7.
Versions of my programs:
pdfTeX 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian)
kpathsea version 6.2.1
Compiled with libpng 1.6.17; using libpng 1.6.17
Compiled with zlib 1.2.8; using zlib 1.2.8
Compiled with poppler version 0.41.0
LuaTeX, Version beta-0.80.0 (TeX Live 2015/Debian) (rev 5238)
Edit: I misread the error Latex error message, but it merely makes a difference. The message says that at most v1.5 is allowed (not v1.4 as I posted originally).
Here is a MWE.
\documentclass{scrbook}
\usepackage{graphicx}
%\usepackage{epstopdf}
\begin{document}
\includegraphics{mwe3.eps}
\end{document}
The eps file is at: http://www.filedropper.com/mwe3
The converted file ist at: http://www.filedropper.com/mwe3-eps-converted-to
epspdfto convert one of your eps to pdf? – book Dec 03 '18 at 09:59