在 latex 中将 .tiff 转换为 png

在 latex 中将 .tiff 转换为 png

我要提交论文的期刊需要.tiff图像格式。我正在尝试添加.tifflatex,并找到了一个线索:将 tif 图像添加到 LaTeX

但是,我无法从 中添加图片.tiff,我不知道如何解决。我刚刚添加了

\usepackage{epstopdf}
\epstopdfDeclareGraphicsRule{.tif}{png}{.png}{convert #1 \OutputFile}
\epstopdfDeclareGraphicsRule{.tiff}{png}{.png}{convert #1 \OutputFile}
\AppendGraphicsExtensions{.tif,.tiff}

但我收到了一条消息

'convert' is not recognized as an internal or external command, operable program or batch file.

和错误

'filename-tiff-to-png' not found

对于文件来说,它epstopdf运行良好.eps,而且我猜我错过了有关convert该行中的一些内容\epstopdfDeclareGraphicsRule{.tif}{png}{.png}{convert #1 \OutputFile}

任何帮助,将不胜感激。

相关内容