ripytide

Results 149 comments of ripytide

`v0.17.0`: 543ec60bec957b900e909cf7eb97b3fef4ab6359 `v0.18.0`: ae1d097144951ea34246d23a63303e841b7a1a81 `v0.19.0`: 9225ee200c635fe495c9e98c93ff43865385a980 `v0.19.1`: a64f803b4c38f5435ca52000ac236ff2d2a990b9 `v0.19.2`: 3612eb2eab89cbba370157a51e87f81cc6f541c3 `v0.20.0`: 3490a2e5431b365706698eccf80245fa84c404e3 `v0.21.0`: b25182960df78a439ce393b00d253fd8cd2c4fdf `v0.22.0`: 4e6694e05ba8df2dab9230aeb8f6178864589923 `v0.23.0`: 6a7adf4bfc75e506452c43681ab9b9a90ecb4081 `v0.24.0`: 1c756b3f8d1cd655f1d35f54d9f4bfbc00aa6452 `v0.25.0`: 44bbf5e7efd8d9de41ffafc2be2a0696cfecfb4b

I can reproduce the issue: ```rust use std::io::Cursor; use image::codecs::png::PngDecoder; use image::AnimationDecoder; fn main() { let png_decoder = PngDecoder::new(Cursor::new(std::fs::read("monkey.png").unwrap())).unwrap(); let apng_decoder = png_decoder.apng().unwrap(); let frames = apng_decoder.into_frames().collect_frames().unwrap(); for (i, frame)...

Continuing the discussion from #647: > All of the draw_x functions accept inputs that may be extend outside the image and then only draw the points that are within the...

Since the `crop()` function needs an unsigned rectangle input it might be worth creating another `Rect` and possibly naming them differently so functions can choose which `Rect` type they want...

Or maybe simply asking upstream to make their `Rect` type generic that way we can have `Rect` and `Rect`.

I think I explored it 3 years ago with #56 and #57. It resulted in me making a new crate for it called [`nodit`](https://docs.rs/nodit) if you want to have a...

I think we should wait to merge this until the the conflict with #2259 has been discussed.

Great, https://github.com/image-rs/imageproc/issues/7 is the corresponding issue on the `imageprocs` crate. My current action plan is to write up a list of all the functions in `imageops` and then individually integrate...

I've written up the list in a tracking table in the top comment which can be updated as we make progress toward this larger goal. Let me know if you'd...

I've finished my case-by-case analysis of the current state of things and it doesn't look great, 1/43 functions has an equivalent version in `imageproc`. This might be more work than...