84e55b86e6
we now have Vips.Image.black(w, h), woo
15 lines
202 B
Python
Executable File
15 lines
202 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys
|
|
|
|
import logging
|
|
logging.basicConfig(level = logging.DEBUG)
|
|
|
|
from gi.repository import Vips
|
|
|
|
from vips8 import vips
|
|
|
|
a = Vips.Image.black(100, 100)
|
|
|
|
a.write_to_file("x.v")
|