gpt4 book ai didi

python-3.x - 在 Python 中将 RGBA 转换为 RGB

转载 作者:行者123 更新时间:2023-12-01 08:22:42 26 4
gpt4 key购买 nike

使用 PIL 将 RGBA 图像转换为 RGB 的最简单、最快的方法是什么?
我只需要从一些图像中删除 A channel 。

我找不到一个简单的方法来做到这一点,我不需要考虑背景。

最佳答案

您可能想使用图像的转换方法:

import PIL.Image


rgba_image = PIL.Image.open(path_to_image)
rgb_image = rgba_image.convert('RGB')

关于python-3.x - 在 Python 中将 RGBA 转换为 RGB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50331463/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com