imageScaleimageScale
Scale/Resize an image
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageScale

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


Module

urn:org:ten60:util:image

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

Syntax

URI
active:imageScale

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

Example Usage

DPML

<instr>
  <type>imageScale</type>
  <operand>var:myimage</operand>
  <operator>
    <imageScale>
      <width>50</width>
      <height>50</height>
    </imageScale>
  </operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

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

Purpose

Scales an image to the dimensions specified by the operator.

The operator document specifies the scale dimensions in pixels. Its syntax is

<imageScale>
  <width>50</width>
  <height>50</height>
</imageScale>

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