pdfGetNumImages

Get the number of images on the analyzed page(s).
int pdfGetNumImages(PDFHandle pdf)
Drawn objects in PDF files are divided into four types: This function returns the number of bitmap images found on the pages specified in the last call to pdfAnalyzePages.
C:
int i, n, nImages; n = pdfGetNumPages(pdf); for (i = 1; i <= n; ++i) { /* analyze page i */ pdfAnalyzePages(pdf, i, i); /* retrieve statistics for page i */ nImages = pdfGetNumImages(pdf); }
pdfAnalyzePages
pdfGetNumTextStrings
pdfGetNumStrokes
pdfGetNumFills