Cykooz / fast_image_resize

Rust library for fast image resizing with using of SIMD instructions.
Apache License 2.0
284 stars 25 forks source link

Doesn't support zoom. #38

Closed AurevoirXavier closed 1 month ago

AurevoirXavier commented 1 month ago

Is possible to zoom an image just like the image crate.

Or it this goal to be fast crop instead of fast resize?

Cykooz commented 1 month ago

It is possible to upscale images. Do you have any difficulty with upscaling?

AurevoirXavier commented 1 month ago

It is possible to upscale images. Do you have any difficulty with upscaling?

Sorry is there an example for this?

I follow the existing example to create an image struct as the dest and call resize on it. If the size is smaller than the original it works. If its size is larger than the original then it panic with doesn't fit the size.

Cykooz commented 1 month ago

It is strange. Could you give example of your code and sizes of source and destination images?

AurevoirXavier commented 1 month ago

It is strange. Could you give example of your code and sizes of source and destination images?

God. It's a typo mistake. I passed the width var to the height arg accidentally.