Converting GIF to Postscript using gifconv:
- Use ScreenHunter
to capture the image to a .gif
- Microsoft Photo Editor works as well, but Office Picture Manager does not
- upload it to Io
- type
gifconv -format eps -norotate file.gif file.ps
- Add \input epsf in the preamble of the LaTeX file
- add the following where the picture is to appear:
\begin{center}
\epsfbox{file.ps}
\end{center}
This will make the picture full size. You can reduce the size by using
\epsfxsize=2in % or some other appropriate width
% alternatively: \epsfysize=measurement
or you can use the -sz option to gifconv:
gifconv ... -sz 100x200 ...
This creates an image that's 100 pixels tall and 200 wide; note
gifconv writes the full size to stdout (and that this printed size
doesn't reflect the -sz option).