2014-12-10 16:03:33 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
#import logging
|
|
|
|
#logging.basicConfig(level = logging.DEBUG)
|
|
|
|
|
2016-05-18 14:41:41 +02:00
|
|
|
import gi
|
|
|
|
gi.require_version('Vips', '8.0')
|
2014-12-10 16:03:33 +01:00
|
|
|
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)
|
|
|
|
|
|
|
|
|