add tiny demo prog

This commit is contained in:
John Cupitt 2014-12-10 15:03:33 +00:00
parent 069ff8982c
commit 7daa70ead3
1 changed files with 19 additions and 0 deletions

19
python/example/read_profile.py Executable file
View File

@ -0,0 +1,19 @@
#!/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)