修复 pst-fractal 中的图像

修复 pst-fractal 中的图像

我只在 tikz 中工作过,我想制作一个 600 像素 x 300 像素的图像,以便分形图像的边缘有点白色模糊,并且框的背景具有与附加图像相同的颜色。

\documentclass{standalone}
\usepackage{pst-fractal}

\begin{document}


\begin{pspicture}(-20,-6)(4,6)
\psframe*[linecolor=cyan](-4,-4)(4,4)
\psSier[unit=0.25,n=4,fillstyle=solid,fillcolor=yellow,linecolor=blue]
\end{pspicture}

\end{document}

在此处输入图片描述

答案1

像这样的东西??

\documentclass{standalone}
\usepackage{pst-fractal}

\begin{document}
\begin{pspicture}(-10pt,-10pt)(610pt,310pt)
\psframe*[linecolor=cyan](600pt,300pt)
\rput(450pt,150pt){\psSier[unit=0.3,n=4,fillstyle=solid,fillcolor=yellow,linecolor=blue]}
\end{pspicture}

\end{document}

在此处输入图片描述

相关内容