在Python中,要实现图片格式转换,需要用到Python的图像处理库Pillow。我们可以使用pip来安装这个库。
pip install Pillow
在代码的开头,我们首先要导入所需的库,具体代码如下:
from PIL import Image
import os
首先,我们需要用os库中的listdir函数来获取文件夹中的所有文件名,然后使用for循环遍历文件夹中的所有文件,将其转换为指定的图片格式。例如,以下代码将源文件夹images/中所有.jpg格式的图片转为.png格式:
source = "images/"
result = "results/"
format = ".png"
for file_name in os.listdir(source):
if file_name.endswith(".jpg"):
img_path = source + file_name
img = Image.open(img_path)
rgb_img = img.convert("RGB")
new_file_name = os.path.splitext(file_name)[0] + format
new_file_path = result + new_file_name
rgb_img.save(new_file_path, format="PNG")
假设我们有如下的文件夹images/,其中存放了两张.jpg格式的图片。
images/
执行以上步骤3的代码后,会将images/文件夹中的两张图片转换为.png格式,并且输出至results/文件夹中。
results/
假设我们有如下的文件夹images/,其中存放了三张.jpg格式的图片。
images/
执行以上步骤3的代码后,会将images/文件夹中的两张图片转换为.png格式,并且输出至results/文件夹中。
results/
from PIL import Image
import os
source = "images/"
result = "results/"
format = ".png"
for file_name in os.listdir(source):
if file_name.endswith(".jpg"):
img_path = source + file_name
img = Image.open(img_path)
rgb_img = img.convert("RGB")
new_file_name = os.path.splitext(file_name)[0] + format
new_file_path = result + new_file_name
rgb_img.save(new_file_path, format="PNG")