create_image_data method

create_image_data

Creates a new, blank ImageData object with the specified dimensions. All of the pixels in the new object are transparent black.

Returns

A new ImageData object with the specified width and height. The new object is filled with transparent black pixels.

def create_image_data(self, imagedata):
    ...
ParameterTypeDescription
imagedataIImageDataAn existing ImageData object from which to copy the width and height. The image itself is not copied.

create_image_data

Creates a new, blank ImageData object with the specified dimensions. All of the pixels in the new object are transparent black.

Returns

A new ImageData object with the specified width and height. The new object is filled with transparent black pixels.

def create_image_data(self, sw, sh):
    ...
ParameterTypeDescription
swfloatThe width to give the new ImageData object.
shfloatThe height to give the new ImageData object.

See Also