-3

Can some one tell using a small sample code on how to convert a multipage PDF file to multiple images with the option to convert to Colored Image (.png) or Grayscale Image (.tif) using Adobe Acrobat XI SDK in C#?

amyn
  • 922
  • 11
  • 24
  • Do you have reasons to think it is possible? Do you have reasons to think it is *not* possible? Does the documentation say anywhere you can, or cannot? – Jongware Sep 06 '14 at 11:09
  • yes i know it is possible because I read it in one of their documentations. also acrobat pro gives you an option to save pdf as images which means the sdk should also be able to do so. – amyn Sep 06 '14 at 11:13
  • Then you have your answer. "Yes, it is possible." – Jongware Sep 06 '14 at 11:15
  • edited my questions if this satisfies you. – amyn Sep 06 '14 at 12:00

1 Answers1

1

Try PdfThumbnailComparer.Lib. It uses Adobe Acrobat SDK behind the scene to produce images from PDF files" new PdfToImage { PdfFilePath = "...path to pdf..." }.PdfPageToPng();

VahidN
  • 18,457
  • 8
  • 73
  • 117
  • correct me if i am wrong. what the code does it that it opens a page, copy the entire pages to clipboard, then pastes it onto a bitmap and then saves the bitmap? – amyn Sep 06 '14 at 20:55
  • I did some research and got to know that using the api I can call tha save as option for a pdf file. The same save as option is also available in adobe acrobat pro which gives u an option to save pdf as images. Any idea about how to call this using the sdk? – amyn Sep 07 '14 at 06:15