PdfSharpCore
PdfSharpCore copied to clipboard
Question; PDFsharpCore obtain precise positions of elements like text, images, or other content on a PDF page.
Is there a way to find precise position of Pdf elements (in points) in a pdf document ? I have tried this but no luck so far.
foreach (PdfItem? content in page.Contents.Elements)
{
PdfSharpCore.Pdf.Advanced.PdfReference pdfContent = (PdfSharpCore.Pdf.Advanced.PdfReference)content;
Debug.WriteLine(content.ToString());