Aurelia Molzer

Results 457 comments of Aurelia Molzer

Do you have a clearer list of formats, maybe even statistics of how often they are encountered? In terms of prioritization or developers that _know_ one of them and seeing...

Color profile refers to a standardized ICC profile and we do not (yet) want to interpret it. Its internal format is a TIF-like directory structure encoded which takes quite a...

Good to know, thanks for the input. Out of all the image formats, AVIF's representation seems most reasonable with regards to extensibility (although the enum approach as proposed by you...

No, nothing concrete. There is too much usage `std::io`, file system, allocation for this to be feasible. Maybe some of the dependencies can do this.

If the implementor of `GenericImage` is allowed to choose the chunk size, then maybe it is possible to work around the language level issues discussed in #888. For some images,...

Possibly, but we can not introduce a hard dependency on rayon [due to the `wasm` target](https://github.com/image-rs/image/issues/879) as far as I am aware. So only behind a non-default feature flag or...

> Is that check still needed or can be completely removed? Or maybe it just needs another condition for Rgb8 format? We need to do a check to find out...

Adding an _optional_ `as_flat_samples{,_mut}`, and using that for optimization, seems very agreeable to me. A very convenient way to speed up a few of other operations as well. The `imageproc`...

I'll quote my original intention for choosing these names: > I don't think `try` is appropriate, the return type [is not an Result]. What I would really want is `get_`...

Similar story, I think it should have the same signature as `slice::get` because it is basically that. Adding a ZST error type only to justify the name seem to me...