png图片转argb
时间: 2023-11-16 09:54:57 浏览: 178
PNG 图片转换
您可以使用Python的Pillow库来实现png图片转argb。具体代码如下:
```python
from PIL import Image
# 打开png图片
img = Image.open('example.png')
# 转换为argb模式
img = img.convert('RGBA')
# 保存为argb格式的图片
img.save('example.argb', 'RGBX')
```
阅读全文