Rank: Newbie
Groups: Registered
Joined: 11/23/2016(UTC) Posts: 5   Thanks: 2 times
|
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? Edited by moderator Tuesday, November 29, 2016 2:46:10 PM(UTC)
| Reason: Not specified
|
|
|
|
|
|
Forum Jump
You can post new topics in this forum.
You can reply to topics in this forum.
You can delete your posts in this forum.
You can edit your posts in this forum.
You cannot create polls in this forum.
You can vote in polls in this forum.
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