Я нашел в интернете скрипт который вырезает у картинки задний фон. Но он у меня почемуто не работает.
input_path = (SOURCE_DIR + 'red.jpg')
output_path = (SOURCE_DIR + 'red.jpg')
f = np.fromfile(input_path)
result = remove(f)
img = Image.open(io.BytesIO(result)).convert("RGBA")
img.save(output_path)
выдаёт такую ошибку :
Traceback (most recent call last):
File "C:\Users\Александр\Desktop\CLEO_BOT\command_menu.py", line 23, in
img = Image.open(io.BytesIO(result)).convert("RGBA")
File "C:\Users\Александр\AppData\Local\Programs\Python\Python39\lib\site-packages\PIL\Image.py", line 3147, in open
raise UnidentifiedImageError(
PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x000002B64800FC70>
>>>