Create a document with \documentclass[pstricks]{standalone}
\usepackage{pst-...,multido}
\begin{document}
\multido{\iA=..}{Number of pages}{%
\begin{pspicture}(...)(...)
...
\end{pspicture}}
\end{document}
Create the pdf and then run:
convert -delay 50 -loop 0 -density 300 -scale 300 -alpha remove <file>.pdf <file>.gif
You can modify the values for delay, density and scale for your need. That command needs at least ImageMagick 7.2.5.
|