Image

class Draft.Image((object)arg1) → None

The Draft.Image class contains all of Draft’s image-related functionality. It contains two types of functions: Static functions, and Member functions. Static functions can be invoked without an instance (by calling Draft.Image.<function name>), whereas Member functions require to be invoked from an instance of a Draft.Image object (by calling <someImage>.<function name>).

The Static functions are used to create new instances of the Draft.Image class, whereas the Member functions are used to modify pre-existing instances of the Draft.Image. The sample code snippets should clarify this distinction function in case you are unsure.