| // Copyright 2019 The PDFium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <stdint.h> |
| |
| #include <utility> |
| |
| #include "build/build_config.h" |
| #include "core/fxcrt/check.h" |
| #include "core/fxge/cfx_defaultrenderdevice.h" |
| #include "core/fxge/dib/fx_dib.h" |
| #include "public/cpp/fpdf_scopers.h" |
| #include "public/fpdf_progressive.h" |
| #include "testing/embedder_test.h" |
| #include "testing/embedder_test_constants.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| namespace { |
| |
| constexpr FX_ARGB kBlack = 0xFF000000; |
| constexpr FX_ARGB kBlue = 0xFF0000FF; |
| constexpr FX_ARGB kGreen = 0xFF00FF00; |
| constexpr FX_ARGB kRed = 0xFFFF0000; |
| constexpr FX_ARGB kWhite = 0xFFFFFFFF; |
| |
| constexpr char kAnnotationStampWithApBaseContentBasename[] = |
| "annotation_stamp_with_ap_base_content"; |
| |
| } // namespace |
| |
| class FPDFProgressiveRenderEmbedderTest : public EmbedderTest { |
| public: |
| class FakePause : public IFSDK_PAUSE { |
| public: |
| explicit FakePause(bool should_pause) : should_pause_(should_pause) { |
| IFSDK_PAUSE::version = 1; |
| IFSDK_PAUSE::user = nullptr; |
| IFSDK_PAUSE::NeedToPauseNow = Pause_NeedToPauseNow; |
| } |
| ~FakePause() = default; |
| static FPDF_BOOL Pause_NeedToPauseNow(IFSDK_PAUSE* param) { |
| return static_cast<FakePause*>(param)->should_pause_; |
| } |
| |
| private: |
| const bool should_pause_; |
| }; |
| |
| // StartRenderPageWithFlags() with no flags. |
| // The call returns true if the rendering is complete. |
| bool StartRenderPage(FPDF_PAGE page, IFSDK_PAUSE* pause); |
| |
| // Start rendering of |page| into a bitmap with the ability to |pause| the |
| // rendering with the specified rendering |flags|. |
| // The call returns true if the rendering is complete. |
| // |
| // See public/fpdfview.h for a list of page rendering flags. |
| bool StartRenderPageWithFlags(FPDF_PAGE page, IFSDK_PAUSE* pause, int flags); |
| |
| // Start rendering of |page| into a bitmap with the ability to pause the |
| // rendering with the specified rendering |flags| and the specified |
| // |color_scheme|. This also takes in the |background_color| for the bitmap. |
| // The call returns true if the rendering is complete. |
| // |
| // See public/fpdfview.h for the list of page rendering flags and |
| // the list of colors in the scheme. |
| bool StartRenderPageWithColorSchemeAndBackground( |
| FPDF_PAGE page, |
| IFSDK_PAUSE* pause, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| uint32_t background_color); |
| |
| // Continue rendering of |page| into the bitmap created in |
| // StartRenderPageWithFlags(). |
| // The call returns true if the rendering is complete. |
| bool ContinueRenderPage(FPDF_PAGE page, IFSDK_PAUSE* pause); |
| |
| // Simplified form of FinishRenderPageWithForms() with no form handle. |
| ScopedFPDFBitmap FinishRenderPage(FPDF_PAGE page); |
| |
| // Finish rendering of |page| into the bitmap created in |
| // StartRenderPageWithFlags(). This also renders the forms associated with |
| // the page. The form handle associated with |page| should be passed in via |
| // |handle|. If |handle| is nullptr, then forms on the page will not be |
| // rendered. |
| // This returns the bitmap generated by the progressive render calls. |
| ScopedFPDFBitmap FinishRenderPageWithForms(FPDF_PAGE page, |
| FPDF_FORMHANDLE handle); |
| |
| // Convert the |page| into a bitmap with a |background_color|, using the |
| // color scheme render API with the specific |flags| and |color_scheme|. |
| // The form handle associated with |page| should be passed in via |handle|. |
| // If |handle| is nullptr, then forms on the page will not be rendered. |
| // This returns the bitmap generated by the progressive render calls. |
| // |
| // See public/fpdfview.h for a list of page rendering flags and |
| // the color scheme that can be applied for rendering. |
| ScopedFPDFBitmap RenderPageWithForcedColorScheme( |
| FPDF_PAGE page, |
| FPDF_FORMHANDLE handle, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| FX_ARGB background_color); |
| |
| protected: |
| // Utility method to render the |page_num| of the currently loaded Pdf |
| // using RenderPageWithForcedColorScheme() passing in the render options |
| // and expected values for bitmap verification. |
| void VerifyRenderingWithColorScheme(int page_num, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| FX_ARGB background_color, |
| const char* basename, |
| bool fuzzy = false); |
| |
| private: |
| // Keeps the bitmap used for progressive rendering alive until |
| // FPDF_RenderPage_Close() is called after which the bitmap is returned |
| // to the caller. |
| ScopedFPDFBitmap progressive_render_bitmap_; |
| int progressive_render_flags_ = 0; |
| }; |
| |
| bool FPDFProgressiveRenderEmbedderTest::StartRenderPage(FPDF_PAGE page, |
| IFSDK_PAUSE* pause) { |
| return StartRenderPageWithFlags(page, pause, 0); |
| } |
| |
| bool FPDFProgressiveRenderEmbedderTest::StartRenderPageWithFlags( |
| FPDF_PAGE page, |
| IFSDK_PAUSE* pause, |
| int flags) { |
| int width = static_cast<int>(FPDF_GetPageWidth(page)); |
| int height = static_cast<int>(FPDF_GetPageHeight(page)); |
| progressive_render_flags_ = flags; |
| int alpha = FPDFPage_HasTransparency(page) ? 1 : 0; |
| progressive_render_bitmap_ = |
| ScopedFPDFBitmap(FPDFBitmap_Create(width, height, alpha)); |
| FPDF_DWORD fill_color = alpha ? 0x00000000 : 0xFFFFFFFF; |
| if (!FPDFBitmap_FillRect(progressive_render_bitmap_.get(), 0, 0, width, |
| height, fill_color)) { |
| return false; |
| } |
| int rv = FPDF_RenderPageBitmap_Start(progressive_render_bitmap_.get(), page, |
| 0, 0, width, height, 0, |
| progressive_render_flags_, pause); |
| return rv != FPDF_RENDER_TOBECONTINUED; |
| } |
| |
| bool FPDFProgressiveRenderEmbedderTest:: |
| StartRenderPageWithColorSchemeAndBackground( |
| FPDF_PAGE page, |
| IFSDK_PAUSE* pause, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| uint32_t background_color) { |
| int width = static_cast<int>(FPDF_GetPageWidth(page)); |
| int height = static_cast<int>(FPDF_GetPageHeight(page)); |
| progressive_render_flags_ = flags; |
| int alpha = FPDFPage_HasTransparency(page) ? 1 : 0; |
| progressive_render_bitmap_ = |
| ScopedFPDFBitmap(FPDFBitmap_Create(width, height, alpha)); |
| DCHECK(progressive_render_bitmap_); |
| if (!FPDFBitmap_FillRect(progressive_render_bitmap_.get(), 0, 0, width, |
| height, background_color)) { |
| return false; |
| } |
| int rv = FPDF_RenderPageBitmapWithColorScheme_Start( |
| progressive_render_bitmap_.get(), page, 0, 0, width, height, 0, |
| progressive_render_flags_, color_scheme, pause); |
| return rv != FPDF_RENDER_TOBECONTINUED; |
| } |
| |
| bool FPDFProgressiveRenderEmbedderTest::ContinueRenderPage(FPDF_PAGE page, |
| IFSDK_PAUSE* pause) { |
| DCHECK(progressive_render_bitmap_); |
| |
| int rv = FPDF_RenderPage_Continue(page, pause); |
| return rv != FPDF_RENDER_TOBECONTINUED; |
| } |
| |
| ScopedFPDFBitmap FPDFProgressiveRenderEmbedderTest::FinishRenderPage( |
| FPDF_PAGE page) { |
| return FinishRenderPageWithForms(page, /*handle=*/nullptr); |
| } |
| |
| ScopedFPDFBitmap FPDFProgressiveRenderEmbedderTest::FinishRenderPageWithForms( |
| FPDF_PAGE page, |
| FPDF_FORMHANDLE handle) { |
| DCHECK(progressive_render_bitmap_); |
| |
| int width = static_cast<int>(FPDF_GetPageWidth(page)); |
| int height = static_cast<int>(FPDF_GetPageHeight(page)); |
| FPDF_FFLDraw(handle, progressive_render_bitmap_.get(), page, 0, 0, width, |
| height, 0, progressive_render_flags_); |
| FPDF_RenderPage_Close(page); |
| return std::move(progressive_render_bitmap_); |
| } |
| |
| ScopedFPDFBitmap |
| FPDFProgressiveRenderEmbedderTest::RenderPageWithForcedColorScheme( |
| FPDF_PAGE page, |
| FPDF_FORMHANDLE handle, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| FX_ARGB background_color) { |
| FakePause pause(true); |
| bool render_done = StartRenderPageWithColorSchemeAndBackground( |
| page, &pause, flags, color_scheme, background_color) == |
| FPDF_RENDER_TOBECONTINUED; |
| EXPECT_FALSE(render_done); |
| |
| while (!render_done) { |
| render_done = ContinueRenderPage(page, &pause); |
| } |
| return FinishRenderPageWithForms(page, form_handle()); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderWithoutPause) { |
| // Test rendering of page content using progressive render APIs |
| // without pausing the rendering. |
| ASSERT_TRUE(OpenDocument("annotation_stamp_with_ap.pdf")); |
| ScopedPage page = LoadScopedPage(0); |
| ASSERT_TRUE(page); |
| FakePause pause(false); |
| EXPECT_TRUE(StartRenderPage(page.get(), &pause)); |
| ScopedFPDFBitmap bitmap = FinishRenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| kAnnotationStampWithApBaseContentBasename); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderWithPause) { |
| // Test rendering of page content using progressive render APIs |
| // with pause in rendering. |
| ASSERT_TRUE(OpenDocument("annotation_stamp_with_ap.pdf")); |
| ScopedPage page = LoadScopedPage(0); |
| ASSERT_TRUE(page); |
| FakePause pause(true); |
| bool render_done = StartRenderPage(page.get(), &pause); |
| EXPECT_FALSE(render_done); |
| |
| while (!render_done) { |
| render_done = ContinueRenderPage(page.get(), &pause); |
| } |
| ScopedFPDFBitmap bitmap = FinishRenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| kAnnotationStampWithApBaseContentBasename); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderAnnotWithPause) { |
| // Test rendering of the page with annotations using progressive render APIs |
| // with pause in rendering. |
| ASSERT_TRUE(OpenDocument("annotation_stamp_with_ap.pdf")); |
| ScopedPage page = LoadScopedPage(0); |
| ASSERT_TRUE(page); |
| FakePause pause(true); |
| bool render_done = StartRenderPageWithFlags(page.get(), &pause, FPDF_ANNOT); |
| EXPECT_FALSE(render_done); |
| |
| while (!render_done) { |
| render_done = ContinueRenderPage(page.get(), &pause); |
| } |
| ScopedFPDFBitmap bitmap = FinishRenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| pdfium::kAnnotationStampWithApPng); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderFormsWithPause) { |
| // Test rendering of the page with forms using progressive render APIs |
| // with pause in rendering. |
| ASSERT_TRUE(OpenDocument("text_form.pdf")); |
| ScopedPage page = LoadScopedPage(0); |
| ASSERT_TRUE(page); |
| FakePause pause(true); |
| bool render_done = StartRenderPage(page.get(), &pause); |
| EXPECT_FALSE(render_done); |
| |
| while (!render_done) { |
| render_done = ContinueRenderPage(page.get(), &pause); |
| } |
| ScopedFPDFBitmap bitmap = |
| FinishRenderPageWithForms(page.get(), form_handle()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), pdfium::kTextFormPng); |
| } |
| |
| void FPDFProgressiveRenderEmbedderTest::VerifyRenderingWithColorScheme( |
| int page_num, |
| int flags, |
| const FPDF_COLORSCHEME* color_scheme, |
| FX_ARGB background_color, |
| const char* basename, |
| bool fuzzy) { |
| ASSERT_TRUE(document()); |
| |
| ScopedPage page = LoadScopedPage(page_num); |
| ASSERT_TRUE(page); |
| |
| ScopedFPDFBitmap bitmap = RenderPageWithForcedColorScheme( |
| page.get(), form_handle(), flags, color_scheme, background_color); |
| ASSERT_TRUE(bitmap); |
| if (fuzzy) { |
| CompareBitmapWithFuzzyExpectationSuffix(bitmap.get(), basename); |
| } else { |
| CompareBitmapWithExpectationSuffix(bitmap.get(), basename); |
| } |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderTextWithColorScheme) { |
| // Test rendering of text with forced color scheme on. |
| constexpr char kHelloWorldForcedColorBasename[] = "hello_world_forced_dark"; |
| |
| ASSERT_TRUE(OpenDocument("hello_world.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kBlack, kWhite, kWhite, kWhite}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, /*flags=*/0, &color_scheme, |
| kBlack, kHelloWorldForcedColorBasename); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderPathWithColorScheme) { |
| // Test rendering of paths with forced color scheme on. |
| constexpr char kRectanglesForcedDarkBasename[] = |
| "rectangles_path_forced_dark"; |
| |
| ASSERT_TRUE(OpenDocument("rectangles.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kWhite, kRed, kBlue, kBlue}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, /*flags=*/0, &color_scheme, |
| kBlack, kRectanglesForcedDarkBasename); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, |
| RenderPathWithColorSchemeAndConvertFillToStroke) { |
| // Test rendering of paths with forced color scheme on and conversion from |
| // fill to stroke enabled. The fill paths should be rendered as stroke. |
| constexpr char kRectanglesFillToStroke[] = "rectangles_fill_to_stroke"; |
| |
| ASSERT_TRUE(OpenDocument("rectangles.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kWhite, kRed, kBlue, kBlue}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_CONVERT_FILL_TO_STROKE, |
| &color_scheme, kBlack, |
| kRectanglesFillToStroke); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderPathObjectUsability) { |
| // Test rendering of paths with one of the page objects active vs. inactive. |
| constexpr char kAllRectanglesUsedBasename[] = "all_rectangles_used"; |
| constexpr char kOneRectangleInactiveBasename[] = "one_rectangle_inactive"; |
| |
| ASSERT_TRUE(OpenDocument("rectangles.pdf")); |
| ScopedPage page = LoadScopedPage(0); |
| ASSERT_TRUE(page); |
| |
| // Check rendering result before modifications. |
| { |
| ScopedFPDFBitmap bitmap = RenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| kAllRectanglesUsedBasename); |
| } |
| |
| ASSERT_EQ(FPDFPage_CountObjects(page.get()), 8); |
| FPDF_PAGEOBJECT page_obj = FPDFPage_GetObject(page.get(), 4); |
| ASSERT_TRUE(page_obj); |
| |
| // Check rendering result after a page object is made inactive. |
| // Contents do not need to be regenerated to observe an effect. |
| ASSERT_TRUE(FPDFPageObj_SetIsActive(page_obj, /*active=*/false)); |
| { |
| ScopedFPDFBitmap bitmap = RenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| kOneRectangleInactiveBasename); |
| } |
| |
| // Check rendering result after the same page object is active again. |
| ASSERT_TRUE(FPDFPageObj_SetIsActive(page_obj, /*active=*/true)); |
| { |
| ScopedFPDFBitmap bitmap = RenderPage(page.get()); |
| CompareBitmapWithExpectationSuffix(bitmap.get(), |
| kAllRectanglesUsedBasename); |
| } |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderHighlightWithColorScheme) { |
| // Test rendering of highlight with forced color scheme on. |
| // |
| // Note: The fill color rendered for highlight is different from the normal |
| // path since highlights have Multiply blend mode, while the other path has |
| // Normal blend mode. |
| constexpr char kContentWithHighlightFillBasename[] = |
| "highlight_with_color_scheme"; |
| |
| ASSERT_TRUE(OpenDocument("annotation_highlight_square_with_ap.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kRed, kGreen, kWhite, kWhite}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_ANNOT, &color_scheme, |
| kBlue, kContentWithHighlightFillBasename, |
| /*fuzzy=*/true); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, |
| RenderHighlightWithColorSchemeAndConvertFillToStroke) { |
| // Test rendering of highlight with forced color and converting fill to |
| // stroke. The highlight should be rendered as a stroke of the rect. |
| // |
| // Note: The stroke color rendered for highlight is different from the normal |
| // path since highlights have Multiply blend mode, while the other path has |
| // Normal blend mode. |
| |
| constexpr char kHighlightWithStroke[] = "highlight_with_stroke"; |
| |
| ASSERT_TRUE(OpenDocument("annotation_highlight_square_with_ap.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kRed, kGreen, kWhite, kWhite}; |
| VerifyRenderingWithColorScheme( |
| /*page_num=*/0, FPDF_ANNOT | FPDF_CONVERT_FILL_TO_STROKE, &color_scheme, |
| kBlue, kHighlightWithStroke, /*fuzzy=*/true); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderInkWithColorScheme) { |
| // Test rendering of multiple ink with forced color scheme on. |
| constexpr char kInkWithColorSchemeBasename[] = "ink_with_color_scheme"; |
| |
| ASSERT_TRUE(OpenDocument("annotation_ink_multiple.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kBlack, kGreen, kRed, kRed}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_ANNOT, &color_scheme, |
| kBlack, kInkWithColorSchemeBasename, |
| /*fuzzy=*/true); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderStampWithColorScheme) { |
| // Test rendering of static annotation with forced color scheme on. |
| constexpr char kStampWithColorSchemeBasename[] = "stamp_with_color_scheme"; |
| |
| ASSERT_TRUE(OpenDocument("annotation_stamp_with_ap.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kBlue, kGreen, kRed, kRed}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_ANNOT, &color_scheme, |
| kWhite, kStampWithColorSchemeBasename); |
| } |
| |
| TEST_F(FPDFProgressiveRenderEmbedderTest, RenderFormWithColorScheme) { |
| // Test rendering of form does not change with forced color scheme on. |
| constexpr char kFormWithColorSchemeBasename[] = "form_with_color_scheme"; |
| |
| ASSERT_TRUE(OpenDocument("annotiter.pdf")); |
| |
| FPDF_COLORSCHEME color_scheme{kGreen, kGreen, kRed, kRed}; |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_ANNOT, &color_scheme, |
| kWhite, kFormWithColorSchemeBasename); |
| |
| // Verify that the MD5 hash matches when rendered without |color_scheme|. |
| VerifyRenderingWithColorScheme(/*page_num=*/0, FPDF_ANNOT, |
| /*color_scheme=*/nullptr, kWhite, |
| kFormWithColorSchemeBasename); |
| } |