How can I convert a PDF page to GIF?

Q: How can I convert a PDF page to GIF?
----

A:
Just call 'Bitmap bmp = pdfdraw.GetBitmap()' and save the resulting
bitmap as GIF.

For example:

System.Drawing.Bitmap bmp = pdfdraw.GetBitmap(page);
bmp.Save("image.gif", System.Drawing.Imaging.ImageFormat.Gif);

For more samples please, see PDFDraw sample project: