C#pdf 切割成圖片

來源:互聯網
上載者:User

標籤:

 引用

using Ghostscript.NET;
using Ghostscript.NET.Rasterizer;

 

需要安裝 exe檔案

 

public static GhostscriptVersionInfo _lastInstalledVersion = null;
        public static GhostscriptRasterizer _rasterizer = null;

 

PdfToImages(string pdfInputPath, string imageOutputPath)

 
                //解析度
                int desired_x_dpi = Convert.ToInt32(96);
                int desired_y_dpi = Convert.ToInt32(96);

  Log.writeLog("產生臨時檔案夾");
                var destFile = GetFilePath(pdfInputPath);
                Log.writeLog("複製pdf資料");
                System.IO.File.Copy(pdfInputPath, destFile, true);
                Log.writeLog("複製pdf資料完成");
                if (System.IO.File.Exists(destFile))
                {
                    try
                    {

  _lastInstalledVersion =                             GhostscriptVersionInfo.GetLastInstalledVersion(                        GhostscriptLicense.GPL | GhostscriptLicense.AFPL,                        GhostscriptLicense.GPL);

                        _rasterizer = new GhostscriptRasterizer();

                        _rasterizer.Open(destFile, _lastInstalledVersion, false);

         for (var i = 1; i <= endPageNum; i++)                  

       {                          

             string pageFilePath = Path.Combine(imageOutputPath, imageName + "_" + i.ToString() + "." + imageFormat.ToString());

                            Image img = _rasterizer.GetPage(desired_x_dpi, desired_y_dpi, i);  

          img.Save(pageFilePath, ImageFormat.Jpeg);

   }
                        _rasterizer.Dispose();
                    }
                    catch (Exception ex)
                    {
                        Log.writeLog("Exception:" + ex.ToString());
                        System.IO.File.Delete(destFile);
                    }
                    finally
                    {
                        Log.writeLog("finally:刪除資料");
                        System.IO.File.Delete(destFile);
                        //System.IO.Direc

}

 

 /// <summary>
        /// 根據源檔案路徑擷取新重新命名的檔案路徑
        /// </summary>
        /// <param name="filePath"></param>
        /// <returns></returns>
        static string GetFilePath(string filePath)
        {
            if (string.IsNullOrWhiteSpace(filePath))
            {
                return string.Empty;
            }
            else
            {
                return string.Format("{0}{1}{2}", filePath.Substring(0, filePath.LastIndexOf(‘\\‘) + 1), Guid.NewGuid().ToString("N").Replace("-", ""), filePath.Substring(filePath.LastIndexOf(‘.‘)));
            }
        }

C#pdf 切割成圖片

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.