libvips/python/example/try16.py

23 lines
363 B
Python
Raw Normal View History

2015-01-29 15:52:55 +01:00
#!/usr/bin/python3
import sys
import logging
logging.basicConfig(level = logging.DEBUG)
import gi
gi.require_version('Vips', '8.0')
2015-01-29 15:52:55 +01:00
from gi.repository import Vips
#Vips.cache_set_trace(True)
a = Vips.Image.new_from_file(sys.argv[1])
x = a.erode([[128, 255, 128],
[255, 255, 255],
[128, 255, 128]])
x.write_to_file(sys.argv[2])