banner_image ×
SeaArt AI Enterprise Version

Import cv2 from PIL import Image, ImageDraw # Load a blank image to create the b

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color,  outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius,  wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius,  wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari',  image) cv2.waitKey(0) cv2.destroyAllWindows() 

add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV.

Hope this solves the problem!

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw
chatIcon
You might be interested in my private matters.
Create AI Character
image

import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color, outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius, wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius, wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari', image) cv2.waitKey(0) cv2.destroyAllWindows() add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV. Hope this solves the problem! import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw

avatar
G
avatar_frame
GILSON4g
Generation Data
Records
Prompts
Copy
import cv2 from PIL import Image , ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image . new('RGB' , (800 , 400) , (255 , 255 , 255)) draw = ImageDraw . Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255 , 0 , 0) body_position = (100 , 100 , 700 , 300) draw . rectangle(body_position , fill=body_color , outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0 , 0 , 0) wheel_radius = 50 wheel_1_position = (150 , 250) wheel_2_position = (650 , 250) wheel_3_position = (150 , 350) wheel_4_position = (650 , 350) draw . ellipse((wheel_1_position[0]-wheel_radius , wheel_1_position[1]-wheel_radius , wheel_1_position[0]+wheel_radius , wheel_1_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_2_position[0]-wheel_radius , wheel_2_position[1]-wheel_radius , wheel_2_position[0]+wheel_radius , wheel_2_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_3_position[0]-wheel_radius , wheel_3_position[1]-wheel_radius , wheel_3_position[0]+wheel_radius , wheel_3_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) draw . ellipse((wheel_4_position[0]-wheel_radius , wheel_4_position[1]-wheel_radius , wheel_4_position[0]+wheel_radius , wheel_4_position[1]+wheel_radius) , fill=wheel_color , outline=wheel_color) # Save the generated image ferrari_img . save('ferrari . png') # Display the image generated using OpenCV image = cv2 . imread('ferrari . png') cv2 . imshow('Ferrari' , image) cv2 . waitKey(0) cv2 . destroyAllWindows() add the positions to draw the wheels 3 and 4 , so that the image of Ferrari has four wheels . The generated image will be saved as "ferrari . png" and displayed using OpenCV . Hope this solves the problem ! import cv2 from PIL import Image , ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image . new('RGB' , (800 , 400) , (255 , 255 , 255)) draw = ImageDraw . Draw(ferrari_img) # Draw
INFO
Prompts
import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw the body of Ferrari (red rectangle) body_color = (255, 0, 0) body_position = (100, 100, 700, 300) draw.rectangle(body_position, fill=body_color, outline=body_color) # Draw Ferrari wheels (black circles) wheel_color = (0, 0, 0) wheel_radius = 50 wheel_1_position = (150, 250) wheel_2_position = (650, 250) wheel_3_position = (150, 350) wheel_4_position = (650, 350) draw.ellipse((wheel_1_position[0]-wheel_radius, wheel_1_position[1]-wheel_radius, wheel_1_position[0]+wheel_radius, wheel_1_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_2_position[0]-wheel_radius, wheel_2_position[1]-wheel_radius, wheel_2_position[0]+wheel_radius, wheel_2_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_3_position[0]-wheel_radius, wheel_3_position[1]-wheel_radius, wheel_3_position[0]+wheel_radius, wheel_3_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) draw.ellipse((wheel_4_position[0]-wheel_radius, wheel_4_position[1]-wheel_radius, wheel_4_position[0]+wheel_radius, wheel_4_position[1]+wheel_radius), fill=wheel_color, outline=wheel_color) # Save the generated image ferrari_img.save('ferrari.png') # Display the image generated using OpenCV image = cv2.imread('ferrari.png') cv2.imshow('Ferrari', image) cv2.waitKey(0) cv2.destroyAllWindows() add the positions to draw the wheels 3 and 4, so that the image of Ferrari has four wheels. The generated image will be saved as "ferrari.png" and displayed using OpenCV. Hope this solves the problem! import cv2 from PIL import Image, ImageDraw # Load a blank image to create the basis of the Ferrari image ferrari_img = Image.new('RGB', (800, 400), (255, 255, 255)) draw = ImageDraw.Draw(ferrari_img) # Draw
Negative Prompts
(nsfw:1.5),cartoon, 3d, ((disfigured)), ((bad art)), ((deformed)), ((poorly drawn)), ((extra limbs)), ((close up)), blurry
CFG Scale
7
Steps
30
Sampler
Euler a
Seed
1695911765
Clip Skip
Image Size
1536 X 1024
Denoising Strength
0.2
Model
Dreamlike Diffusion 1.0
Generate
Size
1536X1024
Date
Jul 2, 2023
Mode
Default
Type
upscale
Checkpoint & LoRA
Dreamlike Diffusion 1.0
Checkpoint
Dreamlike Diffusion 1.0
Mk4 Toyota Supra
LORA
Mk4 Toyota Supra
#advertisement
#westernrealism
#model westernrealism
0 comment
0
0
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

ai_eraserimg
AI Eraser

Easily remove unwanted objects, watermarks, or people from your photos.

dance_vidimg
AI Dance Video Generator

Play with this AI dance video generator, unleash your inner dancer instantly!

DisneyFilter_top_titleimg
Disney Filter

Instantly transform your photos into Disney characters.

wanimg2vid_h1img
Wan 2.1 Image to Video

Animate photos with realistic motion and cinematic effects.

Explore More AI Apps 

Explore Related

ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
D
avatar_frame
davcha
0
0
ControlNet
avatar
W
avatar_frame
wdartlooo
0
0
ControlNet
avatar
D
avatar_frame
Dima_yiu
0
0
ControlNet
avatar
V
avatar_frame
voided
0
0
ControlNet
avatar
M
avatar_frame
malcolmrey
0
0
ControlNet
avatar
A
avatar_frame
AARG_Beatrice
0
0
ControlNet
avatar
A
avatar_frame
ArchiZHS_YQBen
0
0
ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
D
avatar_frame
driftjohnson
0
0
ControlNet
avatar
C
avatar_frame
comingdemon
0
0
ControlNet
avatar
M
avatar_frame
massOxygen
0
0
ControlNet
avatar
I
avatar_frame
isek554
0
0
ControlNet
avatar
G
avatar_frame
GoonyBird
0
0
ControlNet
avatar
C
avatar_frame
Chocolemur
0
0
ControlNet
avatar
D
avatar_frame
Dima_yiu
0
0
ControlNet
avatar
R
avatar_frame
rfktr
0
0
ControlNet
avatar
O
avatar_frame
oosayam
0
0
ControlNet
avatar
A
ArsMachina
0
0
ControlNet
avatar
D
avatar_frame
driftjohnson
0
0
ControlNet
avatar
C
avatar_frame
ConceptConnoisseur
0
0
ControlNet
avatar
Z
avatar_frame
zail
0
0
ControlNet
avatar
A
avatar_frame
albedobond
0
0
ControlNet
avatar
A
alexds9
0
0
ControlNet
avatar
S
avatar_frame
Saurav Adhikari
0
0
ControlNet
avatar
T
avatar_frame
TroubleDarkness
0
0
ControlNet
avatar
X
avatar_frame
xxlmaes
0
0
ControlNet
avatar
R
avatar_frame
RavinDark
0
0
ControlNet
avatar
D
avatar_frame
darkseal
0
0
ControlNet
avatar
C
avatar_frame
ConceptConnoisseur
0
0
ControlNet
avatar
A
avatar_frame
adry
0
0
ControlNet
avatar
G
avatar_frame
grafikzeug
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