Aurelia Molzer

Results 457 comments of Aurelia Molzer

That could be possible, and it certainly would be surprising (except for avif because in that case the encoder and decoder are two distinct sets of libraries).

I tried fixing the link but it appears to not have been uploaded successfully. Could you have a look and ensure that the image causing the error is available?

Weird, `core::option::expect_none_failed` is not what I would expect in a stacktrace that ends with `unreachable`. It seems like an assertion triggered ([possibly this one](https://docs.rs/image/0.23.14/src/image/buffer.rs.html#1155-1156)) but the wasm compilation translates this...

Adding: https://github.com/taotao54321/img-qoi Looks complete although using somewhat dubious `unsafe`, `ArrayVec` dependency for pure stack buffers for some reason, and other implementation issues.

My stance on 'fringe' codecs is mainly by weighing the potential maintenance burden. Generally, I'm positive towards them. (See: accepting 'farbfeld' in #1171 for its simplicity). As far as I...

Lottie seems to be both an animation, and a vector graphic. Those two are probably out of scope (in terms of available contributor bandwidth and architectural readiness). It would probably...

The short answer: not really, but we don't 100% know. Downstream could rely on matching `DynamicImage` to get results and panic on mismatching code paths. Code would break even though...

If you the header data is needed (or any format specific information for that matter) then it's best to use skip the `Reader` and instead utilize the corresponding codec directly....

Since you have a `Cursor` you can do this via a multi-pass approach as a workaround: ```rust use image::codecs::pnm; use image::{DynamicImage, GenericImageView}; use std::env; use std::fs; use std::io::{self, BufReader, BufRead,...

> On top of that dcv issue dav1d 1.0.0 seems to just break avif support Do you happen to have a reproduction? I suspect we should do a call to...