gpt4 book ai didi

c# - 如何使用 ITextSharp 获取 PDF 中嵌入图像的分辨率

转载 作者:行者123 更新时间:2023-12-02 15:32:22 28 4
gpt4 key购买 nike

我构建了一种方法,试图查看给定 pdf 中所有嵌入图像的分辨率是否至少为 300 PPI(适合打印)。它所做的是循环浏览页面上的每个图像,并将其宽度和高度与艺术框的宽度和高度进行比较。如果每页只有一张图片,它会成功运行,但当有多张图片时,艺术框大小会包含所有图片,从而导致数字丢失。

我希望有人可能知道如何获取绘制图像的矩形大小,以便我可以正确比较,或者是否有更简单的方法来获取图像对象的 PPI(因为它会是呈现在其矩形中,而不是原始形式)。

这是上述方法的代码

    private static bool AreImages300PPI(PdfDictionary pg)
{
var res = (PdfDictionary)PdfReader.GetPdfObject(pg.Get(PdfName.RESOURCES));
var xobj = (PdfDictionary)PdfReader.GetPdfObject(res.Get(PdfName.XOBJECT));
if (xobj == null) return true;
foreach (PdfName name in xobj.Keys)
{
PdfObject obj = xobj.Get(name);
if (!obj.IsIndirect()) continue;
var tg = (PdfDictionary)PdfReader.GetPdfObject(obj);
var type = (PdfName)PdfReader.GetPdfObject(tg.Get(PdfName.SUBTYPE));
var width = float.Parse(tg.Get(PdfName.WIDTH).ToString());
var height = float.Parse(tg.Get(PdfName.HEIGHT).ToString());
var artbox = (PdfArray) pg.Get(PdfName.ARTBOX);
var pdfRect = new PdfRectangle(float.Parse(artbox[0].ToString()), float.Parse(artbox[1].ToString()),
float.Parse(artbox[2].ToString()), float.Parse(artbox[3].ToString()));

if (PdfName.IMAGE.Equals(type) && (width < pdfRect.Width*300/72 || height < pdfRect.Height*300/72)
|| ((PdfName.FORM.Equals(type) || PdfName.GROUP.Equals(type)) && !AreImages300PPI(tg)))
{
return false;
}
}
return true;
}

作为引用,这里是调用它的方法:

    internal static List<string> GetLowResWarnings(string MergedPDFPath)
{
var returnlist = new List<string>();
using (PdfReader pdf = new PdfReader(MergedPDFPath))
{
for (int pageNumber = 1; pageNumber <= pdf.NumberOfPages; pageNumber++)
{
var pg = pdf.GetPageN(pageNumber);
if (!AreImages300PPI(pg))
returnlist.Add(pageNumber.ToString());
}
}
return returnlist;
}

感谢您提供的任何帮助。

最佳答案

我可以给你一条完全不同的道路吗?您正在查看全局文件中的图像,但看不到它们在页面中的使用方式。

iTextSharp 有一个名为 iTextSharp.text.pdf.parser.PdfReaderContentParser 的类它可以运行 PdfReader 并告诉您有关它的事情。您可以通过实现 iTextSharp.text.pdf.parser.IRenderListener 来订阅信息界面。对于它遇到的每个图像,您的类的 RenderImage 方法将被调用 iTextSharp.text.pdf.parser.ImageRenderInfo目的。从这个对象中,您可以获得实际图像以及当前变换矩阵,后者将告诉您图像是如何放置到文档中的。

使用此信息,您可以创建这样的类:

public class MyImageRenderListener : iTextSharp.text.pdf.parser.IRenderListener {
//For each page keep a list of various image info
public Dictionary<int, List<ImageScaleInfo>> Pages = new Dictionary<int, List<ImageScaleInfo>>();

//Need to manually change the page when using this
public int CurrentPage { get; set; }

//Pass through the current page units
public Single CurrentPageUnits { get; set; }

//Not used, just interface contracts
public void BeginTextBlock() { }
public void EndTextBlock() { }
public void RenderText(iTextSharp.text.pdf.parser.TextRenderInfo renderInfo) { }

//Called for each image
public void RenderImage(iTextSharp.text.pdf.parser.ImageRenderInfo renderInfo) {
//Get the basic image info
var img = renderInfo.GetImage().GetDrawingImage();
var imgWidth = img.Width;
var imgHeight = img.Height;
img.Dispose();

//Get the current transformation matrix
var ctm = renderInfo.GetImageCTM();
var ctmWidth = ctm[iTextSharp.text.pdf.parser.Matrix.I11];
var ctmHeight = ctm[iTextSharp.text.pdf.parser.Matrix.I22];

//Create new key for our page number if it doesn't exist already
if (!this.Pages.ContainsKey(CurrentPage)) {
this.Pages.Add(CurrentPage, new List<ImageScaleInfo>());
}

//Add our image info to this page
this.Pages[CurrentPage].Add(new ImageScaleInfo(imgWidth, imgHeight, ctmWidth, ctmHeight, this.CurrentPageUnits));
}
}

它使用这个辅助类来存储我们的信息:

public class ImageScaleInfo {
//The page's unit space, almost always 72
public Single PageUnits { get; set; }

//The image's actual dimensions
public System.Drawing.SizeF ImgSize { get; set; }

//How the image is placed into the page
public System.Drawing.SizeF CtmSize { get; set; }

//Automatically calculate how the image is scaled
public Single ImgWidthScale { get { return ImgSize.Width / CtmSize.Width; } }
public Single ImgHeightScale { get { return ImgSize.Height / CtmSize.Height; } }

//Helper constructor
public ImageScaleInfo(Single imgWidth, Single imgHeight, Single ctmWidth, Single ctmHeight, Single pageUnits) {
this.ImgSize = new System.Drawing.SizeF(imgWidth, imgHeight);
this.CtmSize = new System.Drawing.SizeF(ctmWidth, ctmHeight);
this.PageUnits = pageUnits;
}
}

那么使用它真的很简单:

//Create an instance of our helper class
var imgList = new MyImageRenderListener();

//Parse the PDF and inspect each image
using (var reader = new PdfReader(testFile)) {
var proc = new iTextSharp.text.pdf.parser.PdfReaderContentParser(reader);
for (var i = 1; i <= reader.NumberOfPages; i++) {
//Get the page object itself
var p = reader.GetPageN(i);

//Get the page units. Per spec, page units are expressed as multiples of 1/72 of an inch with a default of 72.
var pageUnits = (p.Contains(PdfName.USERUNIT) ? p.GetAsNumber(PdfName.USERUNIT).FloatValue : 72);

//Set the page number so we can find it later
imgList.CurrentPage = i;
imgList.CurrentPageUnits = pageUnits;

//Process the page
proc.ProcessContent(i, imgList);
}
}

//Dump out some information
foreach (var p in imgList.Pages) {
foreach (var i in p.Value) {
Console.WriteLine(String.Format("Image PPI is {0}x{1}", i.ImgWidthScale * i.PageUnits, i.ImgHeightScale * i.PageUnits));
}
}

编辑

根据@BrunoLowagie 下面的评论,我更新了上面的内容以删除“magic 72”并实际尝试查询文档以查看它是否已被覆盖。不太可能发生,但一两年后有人会发现一些晦涩难懂的 PDF 并提示这段代码不能正常工作所以安全总比抱歉好。

关于c# - 如何使用 ITextSharp 获取 PDF 中嵌入图像的分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23815950/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com