libvips/python/try.py

125 lines
3.0 KiB
Python
Raw Normal View History

#!/usr/bin/python
import sys
2011-06-22 14:17:16 +02:00
# you might need this in your .bashrc
# export GI_TYPELIB_PATH=$VIPSHOME/lib/girepository-1.0
from gi.repository import Vips
2012-01-02 12:06:04 +01:00
print 'long way around:'
2011-06-22 14:17:16 +02:00
a = Vips.Image()
a.props.filename = sys.argv[1]
a.props.mode = 'r'
if a.build() != 0:
print Vips.error_buffer()
sys.exit(-1)
2011-06-22 14:17:16 +02:00
print 'a.get_width() =', a.get_width()
print 'a.props.width =', a.props.width
2012-01-02 12:06:04 +01:00
print 'direct call:'
2012-01-04 15:38:22 +01:00
b = Vips.Image.new_from_file(sys.argv[1])
2012-01-02 12:06:04 +01:00
2012-01-04 15:38:22 +01:00
print 'b.get_width() =', b.get_width()
print 'b.props.width =', b.props.width
2012-01-02 12:06:04 +01:00
print 'call operation:'
op = Vips.Operation.new("add")
for prop in op.props:
2012-01-02 16:50:41 +01:00
print 'prop.name =', prop.name
flags = op.get_argument_flags(prop.name)
2012-01-02 16:50:41 +01:00
if flags & Vips.ArgumentFlags.OUTPUT:
print '\toutput'
if flags & Vips.ArgumentFlags.INPUT:
print '\tinput'
if flags & Vips.ArgumentFlags.REQUIRED:
print '\trequired'
print '\tassigned', op.get_argument_assigned(prop.name)
2012-01-02 16:50:41 +01:00
2012-01-02 12:06:04 +01:00
op.props.left = a
2012-01-04 15:38:22 +01:00
op.props.right = b
2012-01-04 14:50:10 +01:00
op2 = Vips.cache_operation_build(op)
if op2 == None:
2012-01-02 12:06:04 +01:00
print Vips.error_buffer()
sys.exit(-1)
2012-01-04 14:50:10 +01:00
out = op2.props.out
op2.unref_outputs()
2012-01-02 12:06:04 +01:00
print 'out.get_format() =', out.get_format()
print 'out.props.format =', out.props.format
out.write_to_file("x.v")
2012-01-04 15:38:22 +01:00
print 'generic call:'
def required_input(flags):
enm = Vips.ArgumentFlags
return flags & enm.INPUT and flags & enm.REQUIRED
def optional_input(flags):
enm = Vips.ArgumentFlags
return flags & enm.INPUT and not flags & enm.REQUIRED
def required_output(flags):
enm = Vips.ArgumentFlags
return flags & enm.OUTPUT and flags & enm.REQUIRED
def optional_output(flags):
enm = Vips.ArgumentFlags
return flags & enm.OUTPUT and not flags & enm.REQUIRED
def vips_call(name, *required, **optional):
op = Vips.Operation.new(name)
# set required input args
i = 0
for prop in op.props:
flags = op.get_argument_flags(prop.name)
2012-01-04 15:38:22 +01:00
if required_input(flags):
if i >= len(required):
print 'too few required args!'
op.props.__setattr__(prop.name, required[i])
i += 1
if i < len(required):
print 'too many required args!'
# set optional input args
for i in optional.keys():
flags = op.get_argument_flags(i)
2012-01-04 15:38:22 +01:00
if optional_input(flags):
op.props.__setattr__(i, optional[i])
# call
op2 = Vips.cache_operation_build(op)
if op2 == None:
print Vips.error_buffer()
# gather output args
out = []
for prop in op2.props:
flags = op2.get_argument_flags(prop.name)
2012-01-04 15:38:22 +01:00
if required_output(flags):
out.append(op2.props.__getattribute__(prop.name))
for i in optional.keys():
flags = op2.get_argument_flags(i)
2012-01-04 15:38:22 +01:00
if optional_output(flags):
out.append(op2.props.__getattribute__(i))
if len(out) == 1:
out = out[0]
# unref everything now we have refs to all outputs we want
op2.unref_outputs()
return out
im = vips_call("add", a, b)
im.write_to_file("x2.v")