Hello,
I load a PDF or a TIF in a TImageENMview like this:
iemv_OUT.LoadFromFileOnDemand(FSplit.FFullPathIN, False);
I do that because later i have some logic behind and select the pages I want to export:
iemv_OUT.BeginSelectImages;
iemv_OUT.MultiSelecting := True;
iemv_OUT.ImageFileName[numSel] := FSplit.FFullPathIN + '::' + idSel.ToString;
iemv_OUT.SelectedImage := idSel;
// I do this on other pages
iemv_OUT.EndSelectImages();
iemv_OUT.MultiSelecting := False;
// then export selected
my actual problem is that after I load the image I check the pages loaded on the PDF like this:
totImg := iemv_OUT.ImageCount;
I don't understand why it's returning 0 on this PDF, everything else seems to work.
Is it a bug? How else can I solve it?
thanks