Click here to Skip to main content
15,916,842 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
We are trying to read data from PDF file using pixel coordinates (by using iTextsharp). below is the sample code and working to retrieve data from text boxes

C#
string file = @"E:\CA Dan Truman Services.pdf";
    PdfReader reader = new PdfReader(file);
     Rectangle rect = new Rectangle(18, 558, 32, 570);  
     RenderFilter[] renderFilter = { new RegionTextRenderFilter(rect) }; 


but its not working while retrieving data from check box.

Please let us know that how can we read data from check box using above mentioned code .

Any suggestions is highly appreciated.



Regards
Nanda Kishore.CH
Posted
Updated 19-Mar-15 1:45am
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900