如何自动从 eps 图中裁剪背景?

如何自动从 eps 图中裁剪背景?

对于图像,我在本问答中找到了解决方案(如何自动从图像中裁剪背景?) 非常有用且易于使用。现在我也想将其用于从 Matlab 导出的 eps 格式的图表。该怎么做?自动裁剪图像的代码如下所示(从上面的链接复制):

\documentclass{article}
\usepackage{graphicx}
\begin{document}

\section*{Original image} 

\fbox{\includegraphics[width=\linewidth]{image.png}}

\section*{Trimmed and clipped image} 

\fbox{\includegraphics[width=\linewidth,trim=6.5cm 6cm 6.5cm 4cm,clip]{image.png}}

\section*{Automatic crop}
Note: compile with \verb|--shell-escape|\\

\newcommand\cropped[1]{%
\immediate\write18{convert -trim #1.png #1cropped.png}%
\includegraphics[width=\linewidth]{#1cropped.png}}

\fbox{\cropped{image}}

\end{document}

相关内容