A white owl with wings flying in the air
![from PIL import Image, ImageDraw
# Cria uma nova imagem com o tamanho desejado (largura x altura)
width = 500
height = 500
image = Image.new("RGB", (width, height), "white")
draw = ImageDraw.Draw(image)
# Define as cores a serem usadas
background_color = (30, 30, 30) # Cor do fundo
owl_color = (255, 255, 255) # Cor da coruja
gun_color = (200, 200, 200) # Cor das armas
# Preenche o fundo com a cor desejada
draw.rectangle([(0, 0), (width, height)], fill=background_color)
# Desenha a coruja minimalista
owl_size = 200
owl_position = ((width - owl_size) // 2, (height - owl_size) // 2)
draw.rectangle([owl_position, (owl_position[0] + owl_size, owl_position[1] + owl_size)], fill=owl_color)
# Desenha as armas entrelaçadas
gun_size = 100
gun_spacing = 20
gun_offset = (owl_position[0] + owl_size // 2 - gun_size // 2, owl_position[1] + owl_size // 2 - gun_size - gun_spacing)
draw.rectangle([gun_offset, (gun_offset[0] + gun_size, gun_offset[1] + gun_size)], fill=gun_color)
draw.rectangle([(gun_offset[0] + gun_size - gun_spacing, gun_offset[1] + gun_size - gun_spacing),
(gun_offset[0] + gun_size + gun_spacing, gun_offset[1] + gun_size + gun_spacing)], fill=gun_color)
# Salva a imagem gerada
image.save("futuristic_coat_of_arms.png")](https://image.cdn2.seaart.me/2023-05-28/28521558745157/4ef978b6d4a5b098f956650dcebe946e1c670c26_high.webp)
Prompts
Copy
from PIL import Image
,
ImageDraw
# Cria uma nova imagem com o tamanho desejado (largura x altura)
width = 500
height = 500
image = Image
.
new("RGB"
,
(width
,
height)
,
"white")
draw = ImageDraw
.
Draw(image)
# Define as cores a serem usadas
background_color = (30
,
30
,
30) # Cor do fundo
owl_color = (255
,
255
,
255) # Cor da coruja
gun_color = (200
,
200
,
200) # Cor das armas
# Preenche o fundo com a cor desejada
draw
.
rectangle([(0
,
0)
,
(width
,
height)]
,
fill=background_color)
# Desenha a coruja minimalista
owl_size = 200
owl_position = ((width - owl_size) // 2
,
(height - owl_size) // 2)
draw
.
rectangle([owl_position
,
(owl_position[0] + owl_size
,
owl_position[1] + owl_size)]
,
fill=owl_color)
# Desenha as armas entrelaçadas
gun_size = 100
gun_spacing = 20
gun_offset = (owl_position[0] + owl_size // 2 - gun_size // 2
,
owl_position[1] + owl_size // 2 - gun_size - gun_spacing)
draw
.
rectangle([gun_offset
,
(gun_offset[0] + gun_size
,
gun_offset[1] + gun_size)]
,
fill=gun_color)
draw
.
rectangle([(gun_offset[0] + gun_size - gun_spacing
,
gun_offset[1] + gun_size - gun_spacing)
,
(gun_offset[0] + gun_size + gun_spacing
,
gun_offset[1] + gun_size + gun_spacing)]
,
fill=gun_color)
# Salva a imagem gerada
image
.
save("futuristic_coat_of_arms
.
png")
INFO
Checkpoint & LoRA

Checkpoint
Deliberate
0 comment
0
2
0