|
Hello, All these functions are encapsulated in the Pdfium class. You can use this low-level API independently of the class library. Code:IntPtr doc = Pdfium.FPDF_LoadDocument(@"test.pdf", "");
Pdfium.FPDF_GetPageSizeByIndex(doc, 1, out double width, out double height)
Pdfium.FPDF_CloseDocument(doc);
Or combine these calls with a class library. Code:
using( var doc = PdfDocument.Load(@"test.pdf))
{
Pdfium.FPDF_GetPageSizeByIndex(doc.Handle, i, out double w, out double h);
}
|
|
Is it possible to call FPDF functions? For example, I want to use FPDFText_GetBoundedSegment. If it is possible can you provide a sample of how I call the function?
Thanks,
Ted
|
Important Information:
The Patagames Software Support Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close