具有可扩展图像作为背景的文本框

具有可扩展图像作为背景的文本框

是否可以定义可修改宽度和高度的文本框,并使用背景图像,当您修改框的宽度或高度时,该背景图像应缩放。更复杂的是,应该以某种方式允许背景图像具有一些应缩放的元素和不允许缩放的其他元素。例如,考虑这样的事情:

在这种情况下,例如大头针就不应该缩放,但纸条应该可以。

答案1

使用 运行它xelatex。使用可选参数,[showgrid]您可以看到一个网格,以便更好地放置对象。

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Viner Hand ITC}
\usepackage{graphicx,pstricks}
\newsavebox\IBox
\pagestyle{empty}
\begin{document}

\savebox\IBox{\includegraphics{/tmp/demo.jpg}}
\begin{pspicture}%[showgrid]% only for showing the grid
   (\wd\IBox,\ht\IBox)
\rput[lb](0,0){\usebox\IBox}
\rput[l]{-5}(1.8,2.5){\small Birthday!}
\rput[l]{60}(1,2.5){\small\TeX!}
\end{pspicture}

\end{document}

在此处输入图片描述

相关内容