Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.

Synopsis

compositingInterop [-addTag string] [-addTagValue string] [-layer string] [-output string] [-temporaryFile]

compositingInterop is NOT undoable, NOT queryable, and NOT editable.

Exports relevant information for compositing packages, in XML format.
Return value is the name of file that has been written, or the empty string if standard outout was used.

Return value

string

Keywords

compositing

Related

render

Flags

addTag, addTagValue, layer, output, temporaryFile
Long name (short name) Argument types Properties
-layer(-l) string createmultiuse
Only processes the given layer(s). This flag can be used multiple times to specify multiple layers. When not set, all the renderable layers are processed.
-output(-o) string create
Name of the output file. If not specified, the output is the standard output. If set to a relative path, the file is written in the current project image directory.
-temporaryFile(-tf) create
When set, a unique temporary filename is automatically generated to store the output
-addTag(-at) string createmultiuse
Adds additionnal tag in the header section of the XML file. The value will be read by the corresponding argument to -addTagValue
-addTagValue(-atv) string createmultiuse
Adds a value for an additionnal tag in the header section of the XML file.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Run the command with default options
compositingInterop;
// Run the command on layer1 and layer3 only, store the result in a
// temporary file
compositingInterop -layer "layer1" -layer "layer3" -temporaryFile;