This MWE code
\documentclass[12pt]{book}
\usepackage{pstricks,psvectorian}
\usepackage{color}
% Compiles with XELATEX
\begin{document}
\thispagestyle{empty}
\begin{pspicture}(-5,-5)(4,4)%
\psframefillcolor=red!65!black,fillstyle=solid(5,12)
\psframelinecolor=red!65!black(5,12)
% oiseaux
\rput[tr]{-30}(-1.3,3){\psvectorian[width=2.1cm,color=white]{57}}
\bfseries %But---THIS DOES NOT appear to make the following image bold.
\rput[tr]{-30}(-1.3,1){\psvectorian[width=2.1cm,color=white]{57}}
\end{pspicture}%
\end{document}
produces the following
I have attempted to make the second image bold by use of the \bfseries command, but as you can see---it does not appear to effect the desired outcome. (Incidentally, \textbf produced an error, which is probably not surprising.)
How may I invoke a psvectorian image and have it displayed more prominently (i.e., in bold) than that which is produced, in this case, by \psvectorian{57}?




\bfseriesis for text, while this is a drawing, so the command does not modify the drawing in any way. Postscript (the language used to make the drawings) does have a line width parameter, however the vectorian images are not drawn as lines but as filled curves, which do not have a line width either. So the only thing you can do is to either overprint the image with a small offset (put the figure two times, at(-1.3,3)and at(-1.3,3.02)for example) which does not look very nice, or add emphasis using a different color or a different size. – Marijn Mar 25 '22 at 20:39contourpackage gives the effect of bolder if the same colour is used; or\llapwith an offset. See https://tex.stackexchange.com/questions/27843/level-of-boldness-changeable/27845#27845 – Cicada Mar 26 '22 at 13:33contourpackage works on fonts, not PostScript commands. A possible\llapsolution is given in the answer, but results detract from the image's design. – Cicada Mar 27 '22 at 08:23