Tagged Questions
1
vote
2answers
2k views
Converting eps to png - dimensions [closed]
When I convert EPS to PNG using this command
gs -dSAFER -dBATCH -dNOPAUSE -r600 -sDEVICE=pnggray -sOutputFile=%1.png "%1.eps"
I get PNG picture with large dimensions, although the bounding box ...
0
votes
1answer
363 views
Prerendering PostScript commands in EPS with GhostScript makes transparent objects opaque
Background
If the following PSTricks diagram
% Circle.tex
\documentclass{article}
\usepackage{pstricks}
\pagestyle{empty}
\begin{document}
\pspicture(-1,-1)(1,1)
\rput(0,0){$E\not=mc^2$}
...