- 参考ページ
https://www.blender.org/manual/editors/uv_image/introduction.html
https://www.blender.org/manual/editors/uv_image/image/image_settings.html#image-generated
- Windows 10 Home 64bit / macOS Sierra 10.12.1
- Blender 2.78a 64bit
import bpy
image_name = "color_grid"
bpy.ops.image.new(name=image_name, width=4096, height=4096, color=(0.0, 0.0, 0.0, 1.0), alpha=False, generated_type='COLOR_GRID', float=False)
image = bpy.data.images[image_name]
image.filepath = "/Users/[ユーザー名]/Pictures/color_grid.png" #保存先を指定
image.save()
# 生成したimageを削除 (複数回実行する場合にimage_nameが重複するため)
image.user_clear() # user countを0にしないとremove()できないっぽい
bpy.data.images.remove(image)