ImageAddborder()

Adds a border to the image. The image will be resized to accomondate the border

Usage

BOOLEAN = ImageAddborder( name, thickness, color, type )
Argument Summary
name the image object
thickness thickness of the border. Must be greater than zero (0)
color color of the border. May be described in hexidecimal, or named color [optional]
type type of border; 'constant' (default) or 'zero' [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ImageAddborder(
   name=?, 
   thickness=?, 
   color=?, 
   type=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageAddborder( ArgumentCollection={
   name : ?, 
   thickness : ?, 
   color : ?, 
   type : ?
} );