【实用工具】4行代码,用python做一个简单强大的图片格式转换器

安装依赖

1
pip install pillow

核心代码

新建一个 xxx.py 文件,写入:

1
2
3
4
5
from PIL import Image
import sys

with Image.open(sys.argv[1]) as im:
im.save(input("目标文件名: "))

使用提示

  • 确保 .py 文件的默认打开方式为 python.exe
  • 将待转换的图片拖动到上述 xxx.py 上,输入目标图片的文件名+后缀
  • PIL 库会根据后缀来判断图片格式并转换
  • 你甚至可以把图片做成 pdf