imageCropimageCrop
Crop an image
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageCrop

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


Module

urn: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

URI
active:imageCrop

ArgumentRulesDescription
operandMandatory the Java bitmap image
operatorMandatory A format document with the dimensions to use

Example Usage

DPML

<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

Crops an image with the format specified by the operator.

The operator document specifies the crop dimensions. Its syntax is

<imageCrop>
  <x>100</x>
  <y>100</y>
  <width>50</width>
  <height>50</height>
</imageCrop>

imageCrop 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.