Esempio n. 1
0
        public SizeF GetPageSize(int pageIndex)
        {
            double width, height;

            PdfiumLibrary.FPDF_GetPageSizeByIndex(_document, pageIndex, out width, out height);

            return(new SizeF((float)width, (float)height));
        }