Cykooz / fast_image_resize

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

the lasted resized example cannot be compiled correctly #35

Closed drharryhe closed 4 months ago

drharryhe commented 4 months ago

the error msg is as followed:

image

Actually, resize() needs IntoImageView ,but the passed src_image is DynamicImage which does not implement IntoImgeView

Cykooz commented 4 months ago

You must enable "image" feature to support image::DynamicImage. This is written before the example in README.md.

drharryhe commented 4 months ago

my fault. thanks a lot