受损的文字:LaTeX tikz 中的 Photoshop 效果?

受损的文字:LaTeX tikz 中的 Photoshop 效果?

是否可以使用 TikZ 创造“破旧”外观?例如:

在此处输入图片描述

请注意,它类似于文本/图像的过滤器,因为每个字母看起来都不同。

答案1

以下是我在评论中提到的使用淡入淡出的示例。要正确执行此操作,应该使用比我更随机的模式,因此这只是一个概念验证,而不是实际方法。

代码:

\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{fadings,patterns}

\begin{document}
\begin{tikzfadingfrompicture}[name=distress]
\node[text=transparent!0] {\Huge \textbf{Distressed Text}};
\end{tikzfadingfrompicture}
\begin{tikzpicture}
\fill[preaction={fill},pattern color=DarkRed,pattern=crosshatch dots] (-4,-1) rectangle (4,1);
\fill[pattern color=IndianRed,
  pattern=crosshatch,
  path fading=distress,
  fit fading=false
] (-3.5,-1) rectangle (3.5,1);
\end{tikzpicture}
\end{document}

结果:

苦恼的文字

相关内容