We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6610f3a commit 0583260Copy full SHA for 0583260
Tests/LibGfx/TestImageDecoder.cpp
@@ -2138,6 +2138,15 @@ TEST_CASE(test_jxl_modular_property_8)
2138
verify_checkerboard(*plugin_decoder);
2139
}
2140
2141
+TEST_CASE(test_jxl_modular_squeeze)
2142
+{
2143
+ auto file = TRY_OR_FAIL(Core::MappedFile::map(TEST_INPUT("jxl/modular_squeeze.jxl"sv)));
2144
+ EXPECT(Gfx::JPEGXLImageDecoderPlugin::sniff(file->bytes()));
2145
+ auto plugin_decoder = TRY_OR_FAIL(Gfx::JPEGXLImageDecoderPlugin::create(file->bytes()));
2146
+
2147
+ verify_checkerboard(*plugin_decoder);
2148
+}
2149
2150
TEST_CASE(test_jxl_icc)
2151
{
2152
auto file = TRY_OR_FAIL(Core::MappedFile::map(TEST_INPUT("jxl/icc.jxl"sv)));
Tests/LibGfx/test-inputs/jxl/modular_squeeze.jxl
61 Bytes
0 commit comments