插入的图形 - 锯齿状边缘,表明它只是整体的一部分

插入的图形 - 锯齿状边缘,表明它只是整体的一部分

我想清楚地表明,插入的图形只是整体的一部分。由于直线切割看起来就像插入的假象,我想知道是否有任何技巧可以显示修剪边的锯齿。例如像这样:

锯齿状页面

答案1

您可以decorations在 TikZ 中使用 来变形路径random steps。当然,您可以自定义这些随机步骤。

我使用了\clip硬编码坐标,从图像左上角开始,然后是右上角,向下到大约 2/3,然后再次向左,然后关闭路径。如果您更改了width包含图形的,请确保相应地更改剪辑坐标。

尽管可以使用变量轻松解决这个问题。

输出

在此处输入图片描述

代码

\documentclass[margin=15pt]{standalone}

\usepackage{tikz}
\usetikzlibrary{calc, decorations.pathmorphing}

\newcommand\myimgwidth{\linewidth} % one measure to rule them all

\begin{document}
\begin{tikzpicture}
\pgfmathsetmacro\myheight{(\myimgwidth/4)*2}
\clip[preaction={draw, line width=.8pt}] (0,0) -- (\myimgwidth,0) -- (\myimgwidth,-\myheight pt) decorate[decoration={random steps,segment length=2mm,amplitude=.1cm}] {(\myimgwidth,-\myheight pt) -- (0,-\myheight pt)} -- (0,0);

\node[inner sep=0pt, outer sep=0pt, anchor=north west] at (0,0) {\includegraphics[width=\myimgwidth,keepaspectratio]{example-image-a}};

\end{tikzpicture}
\end{document}

相关内容