Image Buffer (imbuf)

This module provides access to Blender’s image manipulation API.

It provides access to image buffers outside of Blender’s bpy.types.Image data-block context.

imbuf.load(filepath)

Load an image from a file.

Parameters:

filepath (string or bytes) – 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=image.filepath)

Write an image.

Parameters:
  • image (ImBuf) – the image to write.

  • filepath (string, bytes or NoneType) – Optional filepath of the image (fallback to the images file path).