Radzivon Bartoshyk

Results 97 comments of Radzivon Bartoshyk

No. I don't know how to redraw UIImage into custom buffer without losing HDR metadata.

I had some plans to investigate how to do this. Without committing to it immediately, I’ll figure out how it works someday. However, encoding high bit-depth doesn't bring any personal...

Starting 2.0.0 HDR colorspaces is supported. As I noted - 8 bit only. For anything beyond that, a PR from someone else will be required.

> I haven't found cases where I'd want image to abstract away whether it's RGB or YUV, because image processing on YUV makes subsampling look even worse, so any image...

> So there's a couple different aspects that you might want to abstract over: > > * Being generic over what `Pixel` trait implementation you're dealing with. So being able...

Yes, I'd also vote for exhaustive match in general. Also very attractive it looks to me if intermediate types as `Rgba`, `GrayAlpha` will be omitted and clear primitive type slice...

I've lost a track already. If it is expected to accessed by simple match on `DynamicImage` (what is completely fine to me) and already stores all in one contiguous buffer...

Even your contributor, @Shnatsel, perhaps didn't know [before this time](https://github.com/Shnatsel/wondermagick/blob/05d69167d393d5227a96ce5ad82bd421022c7ba9/src/operations/resize.rs#L208) that it is expected to be accessed only by match on `DynamicImage`

> Just because you can match on the 10 different variants of DynamicImage doesn't mean you want to have 10 entirely different implementations of your image processing algorithm At least...

MUSL's libm, as well as Rust's libm, have terrible accuracy and performance. This is explicitly not a goal of the library, as mentioned in a Rust libm issue. The library...