将文本调整为 tikz 形状

将文本调整为 tikz 形状

是否可以使文本适应该图像内部形状的边框? 在此处输入图片描述

我想要这样的东西(文本应该以某种方式“拉伸”):

在此处输入图片描述

这是我的代码:

\documentclass[tikz, border=1cm]{standalone}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{fontenc}
\begin{document}

\begin{tikzpicture}
\fill[cyan, rounded corners] (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6,0) -- cycle;
\begin{scope}[even odd rule]
\clip[rounded corners] (10,0) -- (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6.4,-2) -- ([turn]0:1) -| (11,0) -- cycle;
\draw[green!80!black, line width=50pt, rounded corners] (15,0) -- (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6.4,-2);
\end{scope}
\begin{scope}[even odd rule]
\clip[rounded corners] (10,0) -- (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6.4,-2) -- ([turn]0:1) -| (11,0) -- cycle (-1,-3) rectangle (11,7);
\draw[red, line width=50pt, rounded corners] (15,0) -- (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6.4,-2);
\end{scope}
\draw[white, line width=15pt, rounded corners] (15,0) -- (0,0) -- (1,5) -- (3,6) -- (5,5) -- (6.4,-2);
\node[scale=3] at (2.89,2.7) {\sffamily
 \scalebox{1.9}[4.5]{AIS}};

\end{tikzpicture}

\end{document}

相关内容