My code is giving me each time a new error, I just want to convert a Webp image to JPG with a white background
JavaScript
x
15
15
1
from PIL import Image
2
import os
3
4
for webbp in os.listdir("."):
5
if webbp.endswith(r'.webp'):
6
jpgsname = webbp.replace('.webp', '') + ".jpg"
7
print(webbp)
8
im = Image.open("./" + webbp).convert("RGBA")
9
non_transparent=Image.new('RGBA',im.size,(255,255,255,255))
10
non_transparent.paste(im,(0,0),im)
11
non_transparent.convert("RGB")
12
non_transparent.save(jpgsname)
13
os.chdir(".")
14
print("Converted " + jpgsname)
15
os.remove(webbp)
Advertisement
Answer
You can do it most simply like this:
JavaScript
1
14
14
1
#!/usr/bin/env python3
2
3
from PIL import Image
4
5
# Open webp image with alpha
6
im = Image.open('webp-lossless-with-alpha.webp')
7
8
# Make same size white background to paste it onto
9
bg = Image.new('RGB', im.size, 'white')
10
11
# Paste the webp with alpha onto the white background
12
bg.paste(im, im)
13
bg.save('result.jpg')
14