FPDFPage_GetThumbnailAsBitmap method

FPDF_BITMAP FPDFPage_GetThumbnailAsBitmap(
  1. FPDF_PAGE page
)

Experimental API. Returns the thumbnail of |page| as a FPDF_BITMAP. Returns a nullptr if unable to access the thumbnail's stream.

page - handle to a page.

Implementation

FPDF_BITMAP FPDFPage_GetThumbnailAsBitmap(FPDF_PAGE page) {
  return _FPDFPage_GetThumbnailAsBitmap(page);
}