imageSerializeimageSerialize
Serializes a Java AWT Bitmap Image to PNG, JPEG or GIF
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageSerialize

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


Module

urn:org:ten60:util:image

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

Syntax

URI
active:imageSerialize

ArgumentRulesDescription
operandMandatory the Java bitmap image
operatorOptional A format document with type of image format to use

Example Usage

DPML

<instr>
  <type>imageSerialize</type>
  <operand>var:myimage</operand>
  <operator>
    <imageSerialize>
      <format>jpg</format>
    </imageSerialize>
  </operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

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

Purpose

Generates a binary stream of a Java bitmap image with the format specified by the operator <format> document. If not operator is provided the default serialization is PNG.

The format document specifies the image type (png or jpg) to serialize. Its syntax is

<imageSerialize>
  <format>png|jpg</format>
</imageSerialize>
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.