captcha icon indicating copy to clipboard operation
captcha copied to clipboard

DeprecationWarning in Pillow 10

Open peppy0510 opened this issue 3 years ago • 0 comments

I got following DeprecationWarning. Environment is Ubuntu 20.04 / Python3.10

captcha/image.py:192: DeprecationWarning: QUAD is deprecated and will be removed in Pillow 10 (2023-07-01). Use Transform.QUAD instead.
im = im.transform((w, h), Image.QUAD, data)

captcha/image.py:165: DeprecationWarning: textsize is deprecated and will be removed in Pillow 10 (2023-07-01). Use textbbox or textlength instead.
w, h = draw.textsize(c, font=font)

captcha/image.py:174: DeprecationWarning: BILINEAR is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.BILINEAR instead.
im = im.rotate(random.uniform(-30, 30), Image.BILINEAR, expand=1)

peppy0510 avatar Jul 05 '22 16:07 peppy0510