Moduleurn:org:ten60:util:image
The
imageCrop
accessor is exported by the urn:org:ten60:util:image module.
Import this module to gain access to the accessor.
Syntax
Argument | Rules | Description | operand | Mandatory | the Java bitmap image | operator | Mandatory | A format document with the dimensions to use |
Example UsageDPML<instr> <type>imageCrop</type> <operand>var:myimage</operand> <operator> <imageCrop> <x>100</x> <y>100</y> <width>50</width> <height>50</height> </imageCrop> </operator> <target>this:response</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:imageCrop");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |