路径: https://pypi.org/project/PythonMagick/
whl下载路径:https://www.lfd.uci.edu/~gohlke/pythonlibs/#pythonmagick
帮助文档:http://www.imagemagick.org/Magick++/Documentation.html
API:http://www.imagemagick.org/script/api.php
ICC路径:https://www.adobe.com/support/downloads/iccprofiles/iccprofiles_win.html
制作 ICC的软件:https://www.chessclub.com/download-software/icc-for-windows/
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# Time : 12:19
# Email : spirit_az@foxmail.com
# File : tst.py
__author__ = 'ChenLiang.Miao'
# import --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
import PythonMagick as mgk
# function +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
reload(mgk)
def getICC(fileName):
color = mgk.Blob()
im = mgk.Image(fileName)
im.write(color, "icc")
return color
def changeColorSpace():
cmyk = getICC("CMYK.icc")
temp = mgk.Image("zbrush-vector-logo.png")
temp.iccColorProfile(cmyk)
temp.write("zbrush-vector-logo_c.png")
需要注意转换的尺寸不能大于现有图片尺寸
def pngToIco():
temp = mgk.Image("zbrush-vector-logo.png")
temp.sample('256x256')
temp.write("zbrush-vector-logo.ico")