libvips/python/example/read_profile.py
2014-12-10 15:03:33 +00:00

20 lines
292 B
Python
Executable File

#!/usr/bin/python
import sys
#import logging
#logging.basicConfig(level = logging.DEBUG)
from gi.repository import Vips
#Vips.cache_set_trace(True)
a = Vips.Image.new_from_file(sys.argv[1])
profile = a.get_value("icc-profile-data")
with open('x.icm', 'w') as f:
f.write(profile)