Image Buffer (imbuf)¶
This module provides access to Blender’s image manipulation API.
Submodules
- imbuf.load(filepath)¶
Load an image from a file.
- Parameters
filepath (string) – the filepath of the image.
- Returns
the newly loaded image.
- Return type
ImBuf
- imbuf.new(size)¶
Load a new image.
- Parameters
size (pair of ints) – The size of the image in pixels.
- Returns
the newly loaded image.
- Return type
ImBuf
- imbuf.write(image, filepath)¶
Write an image.
- Parameters
image (
ImBuf) – the image to write.filepath (string) – the filepath of the image.