20 lines
292 B
Python
20 lines
292 B
Python
|
#!/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)
|
||
|
|
||
|
|