if (width < 0)
throw new FunctionException(pc,"ImageCrop",3,"width","width must contain a none negative value");
if (height < 0)
throw new FunctionException(pc,"ImageCrop",4,"height","width must contain a none negative value");
img.crop((float)x, (float)y, (float)width, (float)height);
return null;
}
}