1、添加 AcroPDFLib.dll和 AxAcroPDFLib.dll

本例使用Winform,在设计器工具箱中会找不到AxAcroPDFLib.AxAcroPDF 控件,需在选择项中COM组件添加Adobe PDF Reader和Adobe Aceobat DC BrowerControl Implementation

2、打开pdf文档 

(1)打开文档路径

 

  1. private void btnSelect_Click(object sender, EventArgs e)
  2. {
  3. OpenFileDialog openFile = new OpenFileDialog();
  4. DialogResult result = openFile.ShowDialog();
  5. if (result == DialogResult.Cancel)
  6. {
  7. return;
  8. }
  9. string strFileName = openFile.FileName;
  10. string strFileNameDup = strFileName;
  11. if (strFileNameDup.ToUpper().EndsWith(".PDF"))
  12. {
  13. txtFilePath.Text = strFileName;
  14. }
  15. else
  16. {
  17. MessageBox.Show("!!", "请选择PDF文件", MessageBoxButtons.OK, MessageBoxIcon.Exclamation,
  18. MessageBoxDefaultButton.Button1);
  19. }
  20. }

 

(2)打开PDF

 

  1. private void btnOpen_Click(object sender, EventArgs e)
  2. {
  3. if (txtFilePath.TextLength == 0)
  4. {
  5. MessageBox.Show("请选择文件");
  6. }
  7. StringBuilder shortFileName = new StringBuilder(4089);
  8. uint shortFileNameSize = (uint)shortFileName.Capacity;
  9. if (GetShortPathName(txtFilePath.Text, shortFileName, shortFileNameSize) != 0)
  10. {
  11. axAcroPDF.LoadFile(shortFileName.ToString());
  12. }
  13. else
  14. {
  15. MessageBox.Show("未找到文件");
  16. }
  17. }

 

3、页面操作

 (1)简单页面操控axAcroPDF.gotoPreviousPage();//上页

axAcroPDF.gotoNextPage();//下页

 axAcroPDF.gotoFirstPage();//首页

axAcroPDF.gotoLastPage();//尾页

(2)跳转到指定页

 axAcroPDF.setCurrentPage(Convert.ToInt32(txtIputPage.Text));

其中txtIputPage.Text为见面控件text传入 的值。

4、pdf转换成图片

添加O2S.Components.PDFRender4NET.dll的引用

(1)获取PDF文档页数

  1. FileStream fs = new FileStream(pdfPath, FileMode.Open, FileAccess.Read);
  2. StreamReader r = new StreamReader(fs);
  3. string pdfText = r.ReadToEnd();//获取PDF文本
  4. Regex rx1 = new Regex(@"/Type\s*/Page[^s]");//使用正则表达式计算:"/Type /Page" 标记出现的次数,计算pdf有多少页
  5. MatchCollection matches = rx1.Matches(pdfText);

 

(2)转换图片

  1. public static void PDFTOImage(string InputPath, string imageOutputPath,
  2. int startPageNum, int endPageNum, ImageFormat imageFormat)
  3. {
  4. PDFFile pdfFile = PDFFile.Open(InputPath);
  5. if (startPageNum <= 0)
  6. {
  7. startPageNum = 1;
  8. }
  9. if (endPageNum > pdfFile.PageCount)
  10. {
  11. endPageNum = pdfFile.PageCount;
  12. }
  13. if (startPageNum > endPageNum)
  14. {
  15. int tempPageNum = startPageNum;
  16. startPageNum = endPageNum;
  17. endPageNum = startPageNum;
  18. }
  19. // 转换成图片
  20. for (int i = startPageNum; i <= endPageNum; i++)
  21. {
  22. Bitmap pageImage = pdfFile.GetPageImage(i - 1, 56 * 5);
  23. pageImage.Save(imageOutputPath + "Convent" + i.ToString() + "." + imageFormat.ToString(), imageFormat);
  24. pageImage.Dispose();
  25. }
  26. pdfFile.Dispose();
  27. }

 

版权声明:本文为machenghu原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/machenghu/p/6418810.html