imageRotateimageRotate
Rotate an image by an arbitrary angle.
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageRotate

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:util:image

The imageRotate accessor is exported by the urn:org:ten60:util:image module. Import this module to gain access to the accessor.

Syntax

URI
active:imageRotate

ArgumentRulesDescription
operandMandatory the Java bitmap image
operatorMandatory A format document with the rotation to apply

Example Usage

DPML

<instr>
  <type>imageRotate</type>
  <operand>var:myimage</operand>
  <operator>
    <imageRotate>
      <angle>100</angle>
    </imageRotate>
  </operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:imageRotate");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

Rotates an image with the format specified by the operator. If necessary the image will be resized to accomodate the rotation.

The operator document specifies the rotation angle in degrees (+ve or -ve integer value). Its syntax is

<imageRotate>
  <angle>100</angle>
</imageRotate>

imageRotate accepts and returns an ImageAspect resource which holds a Java AWT bitmap image and can be pipelined into any other image tool.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.