裁剪图像以用于 tikzpicture

裁剪图像以用于 tikzpicture

我应该如何裁剪图像以供使用tikzpicture

我在标题中声明了一个图像

\pgfdeclareimage{myimage}{image.png}

myimage然后我想在 tikzpicture 中使用裁剪版本

\begin{tikzpicture}
    [...things being drawn...]
    \pgfuseimage{image}
\end{tikzpicture}

有没有类似的选项\includegraphics[trim={0 1cm 0 0}]{image}

答案1

命令\includegraphics可用于节点的内容部分,因此如果\includegraphics[trim={0 1cm 0 0}]{image}是所需的解决方案,只需将其插入到node

\node[inner sep=0pt]{\includegraphics[trim={0 1cm 0 0}]{image}};

inner sep=0pt是为了避免图像和节点边框之间出现任何空白。

相关内容