PSTricks 和渐变填充的不透明度

PSTricks 和渐变填充的不透明度

作为基本问题的后续不透明度和透明度,我想知道在 PSTricks 中是否可以使用渐变填充有效地使用不透明度。当填充切换为渐变时,上面链接的帖子的答案提供的 MWE 不起作用。我正在按照链 latex -> dvips -> ps2pdf 进行编译。

\documentclass{article}
\usepackage{pstricks,pst-grad} 

\begin{document}

\begin{pspicture}(-2,-2)(2,2)
  \psline[linecolor=blue,linewidth=12pt](-2,-2)(2,2)
  %\psframe[fillstyle=solid,fillcolor=red,opacity=0.5](-1,-1)(1,1)
  \psframe[fillstyle=gradient,gradbegin=red,opacity=0.5](-1,-1)(1,1)
\end{pspicture}

\end{document}

答案1

\documentclass{article}
\usepackage{pstricks,pst-slpe} 

\begin{document}

    \begin{pspicture}(-2,-2)(2,2)
    \psline[linecolor=blue,linewidth=12pt](-2,-2)(2,2)
    \psframe[fading,startfading=0.3,endfading=0.8,
       fillstyle=slope,slopebegin=red,slopeangle=90,opacity=0.6](-1,-1)(1,1)
    \end{pspicture}

\end{document}

在此处输入图片描述

相关内容