Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:page_width

423   const int page_width = static_cast<int>(FPDF_GetPageWidth(page));
425 EXPECT_EQ(200, page_width);
429 CompareBitmap(bitmap, page_width, page_height, kOriginalMD5);
432 FS_RECTF page_rect{0, 0, page_width, page_height};
437 TestRenderPageBitmapWithMatrix(page, page_width, page_height, identity_matrix,
441 FS_RECTF middle_of_page_rect{page_width / 4, page_height / 4,
442 page_width * 3 / 4, page_height * 3 / 4};
443 TestRenderPageBitmapWithMatrix(page, page_width, page_height, identity_matrix,
448 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
455 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
461 FS_MATRIX rotate_90_matrix{0, 1, -1, 0, page_width, 0};
462 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
467 FS_MATRIX rotate_180_matrix{-1, 0, 0, -1, page_width, page_height};
468 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
473 FS_MATRIX rotate_270_matrix{0, -1, 1, 0, 0, page_width};
474 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
479 FS_MATRIX mirror_hori_matrix{-1, 0, 0, 1, page_width, 0};
480 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
485 TestRenderPageBitmapWithMatrix(page, page_width, page_height,
489 const int bitmap_width = page_width * 2;