diff --git a/Tests/LibGfx/TestImageWriter.cpp b/Tests/LibGfx/TestImageWriter.cpp index c9cbd844565..be10b09a510 100644 --- a/Tests/LibGfx/TestImageWriter.cpp +++ b/Tests/LibGfx/TestImageWriter.cpp @@ -203,7 +203,16 @@ TEST_CASE(test_webp_color_indexing_transform) for (int x = 0; x < bitmap->width(); ++x) bitmap->set_pixel(x, y, colors[(x * bitmap->width() + y) % number_of_colors]); - TRY_OR_FAIL((test_roundtrip(bitmap))); + auto encoded_data = TRY_OR_FAIL(encode_bitmap(bitmap)); + auto decoded_bitmap = TRY_OR_FAIL(expect_single_frame_of_size(*TRY_OR_FAIL(Gfx::WebPImageDecoderPlugin::create(encoded_data)), bitmap->size())); + expect_bitmaps_equal(*decoded_bitmap, *bitmap); + + Gfx::WebPEncoderOptions options; + options.vp8l_options.allowed_transforms = 0; + auto encoded_data_without_color_indexing = TRY_OR_FAIL(encode_bitmap(bitmap, options)); + EXPECT(encoded_data.size() < encoded_data_without_color_indexing.size()); + auto decoded_bitmap_without_color_indexing = TRY_OR_FAIL(expect_single_frame_of_size(*TRY_OR_FAIL(Gfx::WebPImageDecoderPlugin::create(encoded_data)), bitmap->size())); + expect_bitmaps_equal(*decoded_bitmap_without_color_indexing, *decoded_bitmap); } }