Lines Matching full:page
38 bool render(FPDFEMB_PAGE page, const FPDFEMB_RECT& bounds, SkBitmap* bm,
125 bool SkFPDFEMBImageDecoder::render(FPDFEMB_PAGE page, const FPDFEMB_RECT& bounds, SkBitmap* bm,
151 result = FPDFEMB_StartRender(dib, page, 0, 0, width, height, 0, 0, NULL, NULL);
205 FPDFEMB_PAGE page;
206 result = FPDFEMB_LoadPage(document, 0, &page);
207 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory load page %d\n", result);
210 result = FPDFEMB_GetPageSize(page, &width, &height);
211 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory page size %d [%d %d]\n", result, width, height);
214 result = FPDFEMB_GetPageBBox(page, &rect);
215 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory page rect %d [%d %d %d %d]\n", result,
218 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory begin page parse...\n");
219 result = FPDFEMB_StartParse(page, false, NULL);
220 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory page parse %d\n", result);
223 this->render(page, rect, bm, prefConfig, mode);
226 result = FPDFEMB_ClosePage(page);
227 SkDebugf("----- SkImageDecoder_FPDFEMB_Factory close page %d\n", result);