1. RGB로 변환하기

image = Image.open("./image0.png").convert('RGB')

 

2. Gray로 변환하기

image = Image.open("./image0.png").convert('L')

 

+ Recent posts