Skip to content

Commit

Permalink
crates/bin/operations: Use bicubic resizer
Browse files Browse the repository at this point in the history
  • Loading branch information
etemesi committed Sep 1, 2024
1 parent da9979d commit 4ee5332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/zune-bin/src/cmd_parsers/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub fn parse_options(

let height = *values[1];

let func = Resize::new(width, height, ResizeMethod::Bilinear);
let func = Resize::new(width, height, ResizeMethod::Bicubic);

debug!(
"Added resize operation with width:{}, height:{}",
Expand Down

0 comments on commit 4ee5332

Please sign in to comment.