banner_image ×
SeaArt AI Enterprise Version

There is a horse that is standing in the sand by a fire

((Melhor qualfrom PIL import Image, ImageDraw

# Criando uma nova imagem com fundo transparente
width, height = 800, 600
image = Image.new("RGBA", (width, height), (255, 255, 255, 0))
draw = ImageDraw.Draw(image)

# Draw the sky with a sky color gradient_color_top = (0, 0, 128)
sky_color_bottom = (135, 206, 235)
for y in range(height):
    draw.line([(0, y), (width, y)], fill=(
        int(sky_color_top[0] + (sky_color_bottom[0] - sky_color_top[0]) * y / height),
        int(sky_color_top[1] + (sky_color_bottom[1] - sky_color_top[1]) * y / height),
        int(sky_color_top[2] + (sky_color_bottom[2] - sky_color_top[2]) * y / height)
    ))

# Desenhar o cavalo alado
horse_width, horse_height = 200, 150
horse_x, horse_y = 300, 300
draw.rectangle([(horse_x, horse_y), (horse_x + horse_width, horse_y + horse_height)], fill=(139, 69, 19))
draw.polygon([(horse_x, horse_y + horse_height / 2), (horse_x - 100, horse_y), (horse_x + horse_width - 50, horse_y)], fill=(255, 255, 255))

# Add a fire trail behind the fire horse_width, fire_height = 100, 50
fire_x, fire_y = horse_x - 50, horse_y + horse_height
draw.ellipse([(fire_x, fire_y), (fire_x + fire_width, fire_y + fire_height)], fill=(255, 140, 0))

# Salvando a imagem gerada
image.save("horse_with_fire_trail.png")
idade)), ((obra de arte)), (detalhado), rosto perfeito
chatIcon
I've got unique stuff that's just right for you.
Create AI Character
image

((Melhor qualfrom PIL import Image, ImageDraw # Criando uma nova imagem com fundo transparente width, height = 800, 600 image = Image.new("RGBA", (width, height), (255, 255, 255, 0)) draw = ImageDraw.Draw(image) # Draw the sky with a sky color gradient_color_top = (0, 0, 128) sky_color_bottom = (135, 206, 235) for y in range(height): draw.line([(0, y), (width, y)], fill=( int(sky_color_top[0] + (sky_color_bottom[0] - sky_color_top[0]) * y / height), int(sky_color_top[1] + (sky_color_bottom[1] - sky_color_top[1]) * y / height), int(sky_color_top[2] + (sky_color_bottom[2] - sky_color_top[2]) * y / height) )) # Desenhar o cavalo alado horse_width, horse_height = 200, 150 horse_x, horse_y = 300, 300 draw.rectangle([(horse_x, horse_y), (horse_x + horse_width, horse_y + horse_height)], fill=(139, 69, 19)) draw.polygon([(horse_x, horse_y + horse_height / 2), (horse_x - 100, horse_y), (horse_x + horse_width - 50, horse_y)], fill=(255, 255, 255)) # Add a fire trail behind the fire horse_width, fire_height = 100, 50 fire_x, fire_y = horse_x - 50, horse_y + horse_height draw.ellipse([(fire_x, fire_y), (fire_x + fire_width, fire_y + fire_height)], fill=(255, 140, 0)) # Salvando a imagem gerada image.save("horse_with_fire_trail.png") idade)), ((obra de arte)), (detalhado), rosto perfeito

avatar
C
CleyMs
Prompts
Copy
((Melhor qualfrom PIL import Image , ImageDraw # Criando uma nova imagem com fundo transparente width , height = 800 , 600 image = Image . new("RGBA" , (width , height) , (255 , 255 , 255 , 0)) draw = ImageDraw . Draw(image) # Draw the sky with a sky color gradient_color_top = (0 , 0 , 128) sky_color_bottom = (135 , 206 , 235) for y in range(height): draw . line([(0 , y) , (width , y)] , fill=( int(sky_color_top[0] + (sky_color_bottom[0] - sky_color_top[0]) * y / height) , int(sky_color_top[1] + (sky_color_bottom[1] - sky_color_top[1]) * y / height) , int(sky_color_top[2] + (sky_color_bottom[2] - sky_color_top[2]) * y / height) )) # Desenhar o cavalo alado horse_width , horse_height = 200 , 150 horse_x , horse_y = 300 , 300 draw . rectangle([(horse_x , horse_y) , (horse_x + horse_width , horse_y + horse_height)] , fill=(139 , 69 , 19)) draw . polygon([(horse_x , horse_y + horse_height / 2) , (horse_x - 100 , horse_y) , (horse_x + horse_width - 50 , horse_y)] , fill=(255 , 255 , 255)) # Add a fire trail behind the fire horse_width , fire_height = 100 , 50 fire_x , fire_y = horse_x - 50 , horse_y + horse_height draw . ellipse([(fire_x , fire_y) , (fire_x + fire_width , fire_y + fire_height)] , fill=(255 , 140 , 0)) # Salvando a imagem gerada image . save("horse_with_fire_trail . png") idade)) , ((obra de arte)) , (detalhado) , rosto perfeito
INFO
Prompts
((Melhor qualfrom PIL import Image, ImageDraw # Criando uma nova imagem com fundo transparente width, height = 800, 600 image = Image.new("RGBA", (width, height), (255, 255, 255, 0)) draw = ImageDraw.Draw(image) # Draw the sky with a sky color gradient_color_top = (0, 0, 128) sky_color_bottom = (135, 206, 235) for y in range(height): draw.line([(0, y), (width, y)], fill=( int(sky_color_top[0] + (sky_color_bottom[0] - sky_color_top[0]) * y / height), int(sky_color_top[1] + (sky_color_bottom[1] - sky_color_top[1]) * y / height), int(sky_color_top[2] + (sky_color_bottom[2] - sky_color_top[2]) * y / height) )) # Desenhar o cavalo alado horse_width, horse_height = 200, 150 horse_x, horse_y = 300, 300 draw.rectangle([(horse_x, horse_y), (horse_x + horse_width, horse_y + horse_height)], fill=(139, 69, 19)) draw.polygon([(horse_x, horse_y + horse_height / 2), (horse_x - 100, horse_y), (horse_x + horse_width - 50, horse_y)], fill=(255, 255, 255)) # Add a fire trail behind the fire horse_width, fire_height = 100, 50 fire_x, fire_y = horse_x - 50, horse_y + horse_height draw.ellipse([(fire_x, fire_y), (fire_x + fire_width, fire_y + fire_height)], fill=(255, 140, 0)) # Salvando a imagem gerada image.save("horse_with_fire_trail.png") idade)), ((obra de arte)), (detalhado), rosto perfeito
Negative Prompts
cartoon, painting, illustration, (worst quality, low quality, normal quality:2)
CFG Scale
5
Steps
30
Sampler
DPM++ 2M Karras
Seed
902458727
Clip Skip
2
Image Size
512 X 768
Denoising Strength
0.2
Model
epiCRealism
Generate
Size
1024X1536
Date
Mar 28, 2024
Mode
Default
Type
upscale
Checkpoint & LoRA
epiCRealism
Checkpoint
epiCRealism
#Animal
#Realistic
#Photography
0 comment
0
2
0

SeaArt Swift AI Apps

ai_video_generationimg
AI Video Generation

Unleash your imagination and let AI create visual wonders for you

face_swap_titleimg
Face Swap Online Free

Create funny or realistic face swap videos & photos in a snap

ghibli_filter_h1img
Studio Ghibli Filter

Transform any photo into unique Ghibli-style art in just one click.

vrtry_cloth_h1img
Virtual Try on Clothes

Try on any type of clothes virtually with AI.

fuse_anyoneimg
AI Image Fusion

Combine two images into new one stunning visual with AI Image Fusion.

anime2realityimg
Anime to Reality

Instantly bring your favorite anime characters to life.

Explore More AI Apps 

Explore Related

ControlNet
avatar
C
CleyMs
0
0
ControlNet
avatar
M
Muarief Suhartanto
0
0
ControlNet
avatar
A
Alexander Hasan jazuli al faruq
0
0
ControlNet
avatar
O
omkar mane
0
0
ControlNet
avatar
A
Ali Amran
0
0
ControlNet
avatar
C
Carlos Silva
0
0
ControlNet
avatar
Z
Zen Upright
0
0
ControlNet
avatar
Đ
Đức Lê
0
0
ControlNet
avatar
P
Pablo Esparza
0
0
ControlNet
avatar
H
Hannonimo Secréto
0
0
ControlNet
avatar
C
avatar_frame
Cavalier Masqué
3
1
ControlNet
avatar
R
Rudi Gaming
1
1
ControlNet
avatar
H
Hamid Mahmood Butt
0
0
ControlNet
avatar
C
CRsiete
0
0
ControlNet
avatar
J
Jefferson Silva
0
0
ControlNet
avatar
D
D Preston
0
0
ControlNet
avatar
F
Forcoolbr
0
0
ControlNet
avatar
A
Ariel Ogando Montero
0
0
ControlNet
avatar
C
crom90
0
0
ControlNet
avatar
م
مشاهير سناب شات مع مؤمن
1
1
ControlNet
avatar
S
avatar_frame
Spudnick080
0
0
ControlNet
avatar
S
Sergio Lago Mayorga
0
0
ControlNet
avatar
C
crom90
0
0
ControlNet
avatar
M
mefero
0
0
ControlNet
avatar
H
Hly Y.
0
0
ControlNet
avatar
H
Ha Hoang
0
0
ControlNet
avatar
H
Hly Y.
0
0
ControlNet
avatar
F
Fenrir Thorvaldsen
0
0
ControlNet
avatar
J
Juragan Tua
0
0
ControlNet
avatar
J
jefe1810 cervantes
0
0
ControlNet
avatar
G
Ghiền Gà
0
0
ControlNet
avatar
R
Rayane freire
0
0
ControlNet
logo
English
Application
Create Image AI Characters Swift AI Model Training Canvas AI Apps Workflow
About
Studio Rankings AI Chat AI Blog AI News
Help
Guides Customer Service
Get App
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Follow Us
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Terms
Privacy 特定商取引法 資金決済法に基づく表示
More