将图像转换为不带空白区域的 pdf a5

将图像转换为不带空白区域的 pdf a5

我正在使用这个命令

mogrify -format pdf -page a5  iguana2.jpg 

转换图片文件放入pdf。问题是结果有白色边框。我希望图像完全填满 a5 页面(如果图像边框丢失也没关系)。

原始图像:

原始图像

结果:

结果

答案1

如果你不必使用IM,我建议使用LaTeX来实现这一点。下面的tex代码就是一个例子。

\documentclass[a5paper]{article}
\RequirePackage[margin=0in]{geometry} 
\RequirePackage{graphicx}       

\begin{document}

\begin{figure}[!htb]
    \centering
    %\includegraphics[width=1.0\columnwidth]{example.jpg} # if the width > height
    \includegraphics[height=1.0\paperheight]{example.jpg} # if the height > width
\end{figure}

\end{document}

代码非常容易理解。使用latex编译它。

相关内容