using Acrobat.dll
Hello,
I would like to integrate Acrobat Reader support into my company's project, in order to be able to disassemble the pdf documents on the elements.
I downloaded the TRIAL version Acrobat Reader Pro and added Acrobat.dll to my project(.net). After I read the documentation in the Adobe SDK, I could not get XObject page. Please answer me the following questions:
- How can I get items from current page
//example
CAcroApp App = new AcroAppClass();
CAcroAVDoc AvDoc = new Acrobat.AcroAVDoc();
if (AvDoc.Open(PathToFile, ""))
{
AcroAVPageView avPageView = (AcroAVPageView) AvDoc.GetAVPageView();
for (int iPage = 0; iPage < pdDoc.GetNumPages(); iPage++)
{
var pdPage = (AcroPDPage)pdDoc.AcquirePage(iPage);
// todo "How can I get items from current page?"
}
}
2. Is it possible to connect to an already running process Reader?
//example if it can work
