Could you please advise how can we convert the <PIL.Image.Image image mode=L size=675x1200 at 0x16193333D48> to Real image through Python. Because when I storing outputimg in FTP its storing like "<PIL.Image.Image image mode=L size=675x1200 at 0x16193333D48>" not actually the image.
When I do print output --> C:/Projects/Python/input/2.jpg outputimg --> <PIL.Image.Image image mode=L size=675x1200 at 0x16193333D48>
output = 'C:/Projects/Python/input/2.jpg'
outputimg = remove(Image.open(output))
print(output)
print(outputimg)
So appriciate someone help to convert this PIL value to real image.