Convert PDF file to Image

  1. using System;   
  2. using System.Collections.Generic;   
  3. using System.Linq;   
  4. using System.Text;   
  5. using System.Drawing;   
  6. using Spire.Pdf;   
  7.    
  8. namespace ConvertPdfToImage   
  9. {   
  10.     class Program   
  11.     {   
  12.         static void Main(string[] args)   
  13.         {   
  14.             PdfDocument doc = new PdfDocument();   
  15.             doc.LoadFromFile(@"..\..\E-gowtham.pdf");   
  16.             Image img = doc.SaveAsImage(0);   
  17.             img.Save(@"..\..\gowtham.jpg");   
  18.             doc.Close();   
  19.             System.Diagnostics.Process.Start(@"..\..\gowtham.jpg");   
  20.         }   
  21.     }   
  22. }