如何将32位带符号整数像素转换为8位像素,黑色和白色?我有一个模式I的灰度图像,即8位像素,黑色和白色,所以我需要转换到模式L 8位像素(黑色和白色(。
您可以使用Python库枕
from PIL import Image
path = "path_to_folder_with_image/my_image.png"
with Image.open(path) as image:
if image.mode == 'I':
image = image.convert("L")