add tiny demo prog
This commit is contained in:
parent
069ff8982c
commit
7daa70ead3
19
python/example/read_profile.py
Executable file
19
python/example/read_profile.py
Executable 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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user