banner_image ×
SeaArt AI Empresa

Import numpy as np import matplotlib.pyplot as plt from PIL import Image

import numpy as np
import matplotlib.pyplot as plt
from PIL import Image, ImageDraw, ImageFont

# Set up the canvas size
width, height = 800, 600
image = Image.new('RGB', (width, height), (135, 206, 250))  # Sky blue background
draw = ImageDraw.Draw(image)

# Define the colors
roof_color = (139, 69, 19)  # Brown
wall_color = (255, 228, 196)  # Beige
window_color = (0, 0, 0)  # Black
door_color = (139, 69, 19)  # Brown
snow_color = (255, 250, 250)  # White
tree_color = (34, 139, 34)  # Forest green
mushroom_color = (255, 140, 0)  # Orange
cloud_color = (255, 255, 255)  # White
bridge_color = (165, 42, 42)  # Brown

# Define the house dimensions
house_width = 150
house_height = 100
roof_height = 50

# Define the landscape
landscape_height = 400
tree_width = 50
tree_height = 100
tree_count = 25
mushroom_count = 15
bridge_width = 300
bridge_height = 50

# Draw the landscape
draw.rectangle((0, height - landscape_height, width, height), fill=(34, 139, 34))  # Grass

# Draw the snow
draw.rectangle((0, height - landscape_height, width, height), fill=snow_color)

# Draw the trees
for i in range(tree_count):
    tree_x = np.random.randint(tree_width, width - tree_width)
    tree_y = height - landscape_height + np.random.randint(0, landscape_height - tree_height)
    draw.rectangle((tree_x, tree_y, tree_x + tree_width, tree_y + tree_height), fill=tree_color)

# Draw the mushrooms
for i in range(mushroom_count):
    mushroom_x = np.random.randint(tree_width, width - tree_width)
    mushroom_y = height - landscape_height + np.random.randint(0, landscape_height - 50)
    draw.ellipse((mushroom_x - 20, mushroom_y, mushroom_x + 20, mushroom_y + 40), fill=mushroom_color)
    draw.ellipse((mushroom_x - 10, mushroom_y + 20, mushroom_x + 10, mushroom_y + 40), fill=(255, 255, 255))

# Draw the houses
house_spacing = 100
for i in range(5):
    house_x = i * (house_width + house_spacing)
    house_y = height - landscape_height - house_height
    draw.rectangle((house_x, house_y, house_x +
chatIcon
Você pode se interessar pela minha privacidade.
Criar personagem de IA
image
avatar
E
Emmanuel Shutzberg
Generation Data
Registro
Prompts
Copiar prompts
import numpy as np import matplotlib . pyplot as plt from PIL import Image , ImageDraw , ImageFont # Set up the canvas size width , height = 800 , 600 image = Image . new('RGB' , (width , height) , (135 , 206 , 250)) # Sky blue background draw = ImageDraw . Draw(image) # Define the colors roof_color = (139 , 69 , 19) # Brown wall_color = (255 , 228 , 196) # Beige window_color = (0 , 0 , 0) # Black door_color = (139 , 69 , 19) # Brown snow_color = (255 , 250 , 250) # White tree_color = (34 , 139 , 34) # Forest green mushroom_color = (255 , 140 , 0) # Orange cloud_color = (255 , 255 , 255) # White bridge_color = (165 , 42 , 42) # Brown # Define the house dimensions house_width = 150 house_height = 100 roof_height = 50 # Define the landscape landscape_height = 400 tree_width = 50 tree_height = 100 tree_count = 25 mushroom_count = 15 bridge_width = 300 bridge_height = 50 # Draw the landscape draw . rectangle((0 , height - landscape_height , width , height) , fill=(34 , 139 , 34)) # Grass # Draw the snow draw . rectangle((0 , height - landscape_height , width , height) , fill=snow_color) # Draw the trees for i in range(tree_count): tree_x = np . random . randint(tree_width , width - tree_width) tree_y = height - landscape_height + np . random . randint(0 , landscape_height - tree_height) draw . rectangle((tree_x , tree_y , tree_x + tree_width , tree_y + tree_height) , fill=tree_color) # Draw the mushrooms for i in range(mushroom_count): mushroom_x = np . random . randint(tree_width , width - tree_width) mushroom_y = height - landscape_height + np . random . randint(0 , landscape_height - 50) draw . ellipse((mushroom_x - 20 , mushroom_y , mushroom_x + 20 , mushroom_y + 40) , fill=mushroom_color) draw . ellipse((mushroom_x - 10 , mushroom_y + 20 , mushroom_x + 10 , mushroom_y + 40) , fill=(255 , 255 , 255)) # Draw the houses house_spacing = 100 for i in range(5): house_x = i * (house_width + house_spacing) house_y = height - landscape_height - house_height draw . rectangle((house_x , house_y , house_x +
INFO
Prompts
import numpy as np import matplotlib.pyplot as plt from PIL import Image, ImageDraw, ImageFont # Set up the canvas size width, height = 800, 600 image = Image.new('RGB', (width, height), (135, 206, 250)) # Sky blue background draw = ImageDraw.Draw(image) # Define the colors roof_color = (139, 69, 19) # Brown wall_color = (255, 228, 196) # Beige window_color = (0, 0, 0) # Black door_color = (139, 69, 19) # Brown snow_color = (255, 250, 250) # White tree_color = (34, 139, 34) # Forest green mushroom_color = (255, 140, 0) # Orange cloud_color = (255, 255, 255) # White bridge_color = (165, 42, 42) # Brown # Define the house dimensions house_width = 150 house_height = 100 roof_height = 50 # Define the landscape landscape_height = 400 tree_width = 50 tree_height = 100 tree_count = 25 mushroom_count = 15 bridge_width = 300 bridge_height = 50 # Draw the landscape draw.rectangle((0, height - landscape_height, width, height), fill=(34, 139, 34)) # Grass # Draw the snow draw.rectangle((0, height - landscape_height, width, height), fill=snow_color) # Draw the trees for i in range(tree_count): tree_x = np.random.randint(tree_width, width - tree_width) tree_y = height - landscape_height + np.random.randint(0, landscape_height - tree_height) draw.rectangle((tree_x, tree_y, tree_x + tree_width, tree_y + tree_height), fill=tree_color) # Draw the mushrooms for i in range(mushroom_count): mushroom_x = np.random.randint(tree_width, width - tree_width) mushroom_y = height - landscape_height + np.random.randint(0, landscape_height - 50) draw.ellipse((mushroom_x - 20, mushroom_y, mushroom_x + 20, mushroom_y + 40), fill=mushroom_color) draw.ellipse((mushroom_x - 10, mushroom_y + 20, mushroom_x + 10, mushroom_y + 40), fill=(255, 255, 255)) # Draw the houses house_spacing = 100 for i in range(5): house_x = i * (house_width + house_spacing) house_y = height - landscape_height - house_height draw.rectangle((house_x, house_y, house_x +
Escala CFG
Passos
25
Coletor
euler
Semente
902582712
Agendador
Tamanho de Imagem
683 X 1024
Modelo
SeaArt Infinity
Criar
Tamanho
680X1024
Data
Aug 20, 2024
Modo
Estúdio
Tipo
cell
Checkpoint & LoRA
SeaArt Infinity
Checkpoint
SeaArt Infinity
#Paisagem
#Anime
#Design de Cena
#SeaArt Infinity
comentário(s)
0
0
0

Apps de IA Rápida de SeaArt

ai_video_generationimg
Geração de vídeos com IA

Libere sua imaginação e deixe a IA criar maravilhas visuais para você

face_swap_titleimg
Troca de rosto IA online gratuita e ilimitada

Crie rapidamente vídeos e fotos de troca de rosto divertidos e realistas

cartoon_avatar_h1img
Criador de avatares de desenho animado

Transforme suas fotos em avatares de desenho animado únicos instantaneamente.

DisneyFilter_top_titleimg
Filtro Disney

Transforme instantaneamente suas fotos em personagens da Disney.

anime2realityimg
Do anime para a realidade

Traga instantaneamente seus personagens de anime favoritos à vida.

ghibli_filter_h1img
filtro do Studio Ghibli

Transforme qualquer foto em arte única no estilo Ghibli com apenas um clique.

Explore mais aplicativos AI 

Recomendações relacionadas

ControlNet
logo
Português
Aplicativo
Criar imagem Personagens AI Swift AI Treinamento de modelo Canvas Ferramenta rápida Fluxo de Trabalho
Criado {time}
Estúdio Classificação Bate-papo IA AI blog AI notícias
Ajuda
Guias Atendimento ao Cliente
Obter aplicativo
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Siga-nos
iconiconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Termos
Política de Privacidade 特定商取引法 資金決済法に基づく表示
Mais