specifySize = new Parameter(this, "specifySize");
specifySize.setTypeEquals(BaseType.BOOLEAN);
specifySize.setToken(BooleanToken.TRUE);
width = new Parameter(this, "width", new IntToken(800));
height = new Parameter(this, "height", new IntToken(600));
xScaleFactor = new Parameter(this, "xScaleFactor", new DoubleToken(
"1.0F"));
yScaleFactor = new Parameter(this, "yScaleFactor", new DoubleToken(
"1.0F"));
interpolationType = new StringAttribute(this, "interpolationType");
interpolationType.setExpression("bilinear");
_interpolationType = _BILINEAR;
subSampleBits = new Parameter(this, "subSampleBits", new IntToken(8));
input.setTypeEquals(BaseType.OBJECT);
output.setTypeEquals(BaseType.OBJECT);
}