This commit is contained in:
Psychpsyo 2024-11-21 14:29:44 +01:00 committed by GitHub
commit 96ee8f690f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -68,6 +68,11 @@ static ErrorOr<void> decode_avif_header(AVIFLoadingContext& context)
if (context.decoder == nullptr) {
return Error::from_string_literal("failed to allocate AVIF decoder");
}
// This makes the decoder not error if an item in the file is missing the mandatory pixi property.
// Reason for this is that older versions of ImageMagick do not set this property, which leads to
// broken web content if the error is not ignored.
context.decoder->strictFlags &= ~AVIF_STRICT_PIXI_REQUIRED;
}
avifResult result = avifDecoderSetIOMemory(context.decoder, context.data.data(), context.data.size());