|
|
I need to know if a same PdfImageObject is rendering in more than one page, but object has not an unique ID. Is it possible? We need to highlight all images in the page that has rendered more than once (same page or others). Actually we are using AbcPDF that has Renditions property with BoundBox for each rendition: Code:
using (Doc doc = new Doc()) {
doc.Read("d:\\test.pdf");
var op = new ImageOperation(doc);
op.PageContents.AddPages();
foreach (ImageProperties image in op.GetImageProperties())
{
if (image.Renditions.Count > 1)
{
FOUND IN MORE THAN ONE PLACE
}
}
}
How can i do the same with Pdfium.NET?
|
Important Information:
The Patagames Software Support Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close