python将rbg转换为rgba
时间: 2023-03-25 21:04:42 浏览: 323
python基础教程:Python 将RGB图像转换为Pytho灰度图像的实例
5星 · 资源好评率100%
可以使用Pillow库中的Image模块来实现将RGB转换为RGBA,具体代码如下:
```python
from PIL import Image
# 打开图片
img = Image.open('example.jpg')
# 将图片转换为RGBA模式
img_rgba = img.convert('RGBA')
# 保存图片
img_rgba.save('example_rgba.png')
```
其中,'example.jpg'为原始图片的路径,'example_rgba.png'为转换后的图片保存路径。
阅读全文