Skip to content

Commit

Permalink
Added more resize algos to Java API (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored May 15, 2024
1 parent bb43dc1 commit e2dd6b9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
public enum ResizeAlgorithm {
RESIZE_LINEAR(0),
RESIZE_CUBIC(1),
RESIZE_NEAREST(2);
RESIZE_NEAREST(2),
RESIZE_BILINEAR_PILLOW(3),
RESIZE_BICUBIC_PILLOW(4);

private int value;

Expand Down

0 comments on commit e2dd6b9

Please sign in to comment.