答案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}