libvips/python/example/try14.py

14 lines
197 B
Python
Raw Normal View History

2014-10-16 11:43:29 +02:00
#!/usr/bin/python
import sys
import logging
#logging.basicConfig(level = logging.DEBUG)
from gi.repository import Vips
a = Vips.Image.black(100, 100)
b = a.bandjoin(2)
b.write_to_file("x.v")