You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
310 B
Python

from PIL import Image
import os
mapfile = "C:\\Users\\Administrator\\Desktop\\1.wmf"
im = Image.open(mapfile)
path = str(os.path.dirname(mapfile))
onlyfilename, ext = os.path.splitext(os.path.basename(mapfile))
str_onlyfilename = str(onlyfilename)
im.save(path + '\\'+ str_onlyfilename + '.png', quality=95)