update xlib.avecl

This commit is contained in:
iperov 2021-10-06 14:50:53 +04:00
commit 65fb01ff39
6 changed files with 143 additions and 7 deletions

View file

@ -0,0 +1,8 @@
from enum import IntEnum, IntEnum
class EInterpolation(IntEnum):
NEAREST = 0
LINEAR = 1
CUBIC = 2
LANCZOS3 = 3
LANCZOS4 = 4