2011-07-26 10:27:06 +02:00
|
|
|
.TH VIPS 1 "30 June 1993"
|
|
|
|
.SH NAME
|
|
|
|
vips \- run vips operations from the command line
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B vips [options] [command] [command-options] [command-args]
|
|
|
|
.SH DESCRIPTION
|
|
|
|
.B vips(1)
|
|
|
|
is the VIPS universal main program. You can use it to run any VIPS operation
|
2014-06-19 10:59:29 +02:00
|
|
|
from the command line, to query the VIPS class hierarchy, and to
|
2011-07-26 10:27:06 +02:00
|
|
|
maintain parts of the VIPS library.
|
|
|
|
|
|
|
|
To run a VIPS function, the first argument should be the name of the function
|
|
|
|
and following arguments should be the function parameters. For example:
|
|
|
|
|
2014-06-19 10:59:29 +02:00
|
|
|
$ vips invert lena.v lena2.v
|
2011-07-26 10:27:06 +02:00
|
|
|
|
|
|
|
.SH OPTIONS
|
|
|
|
.TP
|
|
|
|
.B -p PLUGIN, --plugin=PLUGIN
|
|
|
|
Load PLUGIN. Note that plugins in $VIPSHOME/lib are loaded automatically.
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B -v, --version
|
|
|
|
Show VIPS version.
|
|
|
|
|
|
|
|
.SH COMMANDS
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B list PACKAGE
|
|
|
|
List operations defined in PACKAGE. PACKAGE can also be "classes", "packages"
|
2014-06-19 10:59:29 +02:00
|
|
|
or "all".
|
2011-07-26 10:27:06 +02:00
|
|
|
|
|
|
|
.TP
|
|
|
|
.B cpph PACKAGE
|
|
|
|
Print C++ header for PACKAGE. PACKAGE can also be a function name, or "all".
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B cppc PACKAGE
|
|
|
|
Print C++ binding for PACKAGE. PACKAGE can also be a function name, or "all".
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B operation-name operation-arguments
|
|
|
|
Execute a named operation, for example im_invert, or add. Names prefixed with
|
|
|
|
"im_" are called via the vips7 interface, names without the prefix use the new
|
|
|
|
vips8 interface.
|
|
|
|
|
|
|
|
.SH EXAMPLES
|
|
|
|
|
|
|
|
Run a vips8 operation. Operation options must follow the operation name.
|
|
|
|
|
2014-06-19 10:59:29 +02:00
|
|
|
$ vips insert lena.v lena2.v out.v 0 0 --background "128 0 0"
|
2011-07-26 10:27:06 +02:00
|
|
|
|
|
|
|
Get a "usage" message for an operation
|
|
|
|
|
2014-06-19 10:59:29 +02:00
|
|
|
$ vips insert
|
|
|
|
insert image @sub into @main at @x, @y
|
2013-10-22 18:12:50 +02:00
|
|
|
usage:
|
2014-06-19 10:59:29 +02:00
|
|
|
insert main sub out x y
|
2011-07-26 10:27:06 +02:00
|
|
|
where:
|
2014-06-19 10:59:29 +02:00
|
|
|
main - Main input image, input VipsImage
|
|
|
|
sub - Sub-image to insert into main image, input VipsImage
|
2013-10-22 18:12:50 +02:00
|
|
|
out - Output image, output VipsImage
|
2014-06-19 10:59:29 +02:00
|
|
|
x - Left edge of sub in main, input gint
|
|
|
|
y - Top edge of sub in main, input gint
|
|
|
|
optional arguments:
|
|
|
|
expand - Expand output to hold all of both inputs, input gboolean
|
|
|
|
background - Colour for new pixels, input VipsArrayDouble
|
2013-10-22 18:12:50 +02:00
|
|
|
operation flags: sequential-unbuffered
|
2014-06-19 10:59:29 +02:00
|
|
|
insert: too few arguments
|
2011-07-26 10:27:06 +02:00
|
|
|
|
|
|
|
.SH RETURN VALUE
|
|
|
|
returns 0 on success and non-zero on error.
|
|
|
|
.SH SEE ALSO
|
2014-06-24 15:19:57 +02:00
|
|
|
vipsheader(1)
|
2011-07-26 10:27:06 +02:00
|
|
|
.SH COPYRIGHT
|
|
|
|
The National Gallery and Birkbeck College, 1989-1996.
|