Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

2023-05-12から1日間の記事一覧

python-fuで画像を弄る その2:画像の自動生成

実際のところ from gimpfu import * def create_image_with_text(filename, text): # Create a new image image = gimp.Image(320, 320, RGB) # Create a new layer layer = gimp.Layer(image, "Background", 320, 320, RGB_IMAGE, 100, NORMAL_MODE) # Add …