logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

New Topic Post Reply
Options
Go to last post Go to first unread
jacksonsavitraz  
#1 Posted : Friday, November 25, 2016 1:58:41 AM(UTC)
Quote
jacksonsavitraz

Rank: Newbie

Groups: Registered
Joined: 11/23/2016(UTC)
Posts: 5
Man
Brazil

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

Quick Reply Show Quick Reply
Users browsing this topic
Guest
New Topic Post Reply
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.