libvips/python/example/try6.py
John Cupitt 6fb967ac3b more py tweaks
fast startup, reorganised python/
2014-10-14 10:17:33 +01:00

15 lines
237 B
Python
Executable File

#!/usr/bin/python
import sys
#import logging
#logging.basicConfig(level = logging.DEBUG)
from gi.repository import Vips
a = Vips.Image.new_from_file(sys.argv[1])
b = a.write_to_buffer(".jpg")
c = Vips.Image.new_from_buffer(b, "")