Skip to content

Commit 4f5a75f

Browse files
committed
Added plane16 with alpha, added image wrapper
1 parent ecb5755 commit 4f5a75f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ let start = Instant::now();
1717
let src_size = ImageSize::new(dimensions.0 as usize, dimensions.1 as usize);
1818
let dst_size = ImageSize::new(dimensions.0 as usize / 4, dimensions.1 as usize / 4);
1919

20-
let resized = resize_rgb8(&transient, src_size, dst_size, ResamplingFunction::Lanczos3).unwrap();
20+
let resized = resize_rgb8(&transient, src_size, dst_size,
21+
ResamplingFunction::Lanczos3).unwrap();
2122
```
2223

2324
Example comparison time for downscale RGBA 4928x3279 `8 bit` image in 4 times.

0 commit comments

Comments
 (0)