彩票走势图

GdPicture.NET使用教程:怎样去除PDF中的空白页

原创|其它|编辑:郝浩|2012-12-11 15:47:15.000|阅读 607 次

概述:有时PDF中会有一些空白页存在,扫描出来也是空白的,在使用GdPicture.NET的时候,只需要几段简单的代码,就可以除去PDF中的空白页。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

PDF文件进行扫描的时候,有时PDF中会有一些空白页存在,扫描出来也是空白的,所以在扫描前往往需要加载GdPicture.NET,先一页一页的进行检查,这样往往会很麻烦,实际上在使用GdPicture.NET的时候,只需要几段简单的代码,就可以除去PDF中的空白页,这里提供一段示例代码,适用于GdPicture.NET 8.5.3或者更高的版本。

const int RASTER_DPI = 200;
            GdPictureImaging oGdPictureImaging = new GdPictureImaging();
            GdPicturePDF oGdPicturePDF = new GdPicturePDF();
            oGdPicturePDF.LoadFromFile(@"c:\input.pdf", false);
            oGdPicturePDF.SetMeasurementUnit(PdfMeasurementUnit.PdfMeasurementUnitPoint);
            oGdPicturePDF.EnableCompression(true);
            for (int i = 1; i <= oGdPicturePDF.GetPageCount(); i++)
            {
                oGdPicturePDF.SelectPage(i);
                int rasterImageID = oGdPicturePDF.RenderPageToGdPictureImageEx(RASTER_DPI, false);
                int bitDepth = oGdPictureImaging.GetBitDepth(rasterImageID);
                if (oGdPictureImaging.IsBlank(rasterImageID))
                {
                    //page is blank, we remove it
                    oGdPicturePDF.DeletePage(i--);
                }
                else
                {
                    //if the page is based on a single color image, we convert it to 1bpp. Warning: not 100% safe
                    if (bitDepth > 8 && !oGdPicturePDF.PageHasText() && !oGdPicturePDF.PageHasShape() && oGdPicturePDF.GetPageImageCount() == 1)
                    {
                        if (oGdPictureImaging.ConvertTo1BppAT(rasterImageID) == GdPictureStatus.OK)
                        {
                            //we remove the page then create a new one to remove unused resources on pack
                            float pageWidth = oGdPicturePDF.GetPageWidth();
                            float pageHeight = oGdPicturePDF.GetPageHeight();
                            oGdPicturePDF.DeletePage(i);
                            oGdPicturePDF.InsertPage(pageWidth, pageHeight, i);
                            string pdfImageResName = oGdPicturePDF.AddImageFromGdPictureImage(rasterImageID, false, false);
                            if (pdfImageResName != "")
                            {
                                oGdPicturePDF.DrawImage(pdfImageResName, 0, 0, pageWidth, pageHeight);
                            }
                            else
                            {
                                throw new Exception("Error embedding bitmap in PDF");
                            }
                        }
                        else
                        {
                            throw new Exception("Error during bitmap thresholding");
                        }
                    }
                }
                oGdPictureImaging.ReleaseGdPictureImage(rasterImageID);
            }
            oGdPicturePDF.SaveToFile(@"c:\newpdf.pdf", true); //we have to pack the doc to remove unused enbedded bitmaps
            oGdPicturePDF.CloseDocument();

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP