HI...
I have the attached PDF and I would to extract text in the area as image 2
I am using this code
Dim textExtractor As PdfTextExtractor = New PdfTextExtractor(page)
Dim extractOptions As PdfTextExtractOptions = New PdfTextExtractOptions With {
.ExtractArea = New RectangleF(2400, 72, 200, 72)
}
Dim text As String = textExtractor.ExtractText(extractOptions)
but not working
I am confused on the origin and coordinates
Can you help me?