How can I make a Ghostscript overlay text on top of a PostScript file?
I found part of a solution here: How can I make a program overlay text on a postscript file? which suggests to do:
gs -o figLabel.pdf -sDEVICE=pdfwrite \
-c "/Helvetica findfont 15 scalefont setfont 50 200 moveto (text) show" \
-f fig.eps`
However in that case the text is behind the image.
Is there an option in Ghostscript to force the text to be in front of the image?