banner_image ×
SeaArt AI Enterprise Version

Import matplotlib.pyplot as plt from matplotlib.patches import FancyArrowPatch

import matplotlib.pyplot as plt
from matplotlib.patches import FancyArrowPatch, Ellipse, Polygon

# Create a new figure for the final logo
fig, ax = plt.subplots(figsize=(8, 8))

# Define colors
wyvern_color = "#2a7fff"  # A strong blue color for the wyvern (symbolizing courage)
eye_color = "#000000"     # Black for the eye
background_color = "#f0f0f0"  # Light grey for background

# Set background color
fig.patch.set_facecolor(background_color)
ax.set_facecolor(background_color)

# Wyvern body forming the shape of number 10
theta = np.linspace(0, 2 * np.pi, 100)
x0 = 4 + 2 * np.cos(theta)  # Circle for '0'
y0 = 5 + 4 * np.sin(theta)

# Head and tail forming number '1'
x1 = np.linspace(4, 4, 100)
y1 = np.linspace(8, 12, 100)

# Adding wings with a more detailed shape
wing_x1 = [3.5, 2.5, 4]
wing_y1 = [10, 12, 11]
wing_x2 = [4.5, 5.5, 4]
wing_y2 = [10, 12, 11]

# Plot the body
ax.plot(x0, y0, color=wyvern_color, linewidth=5)
ax.plot(x1, y1, color=wyvern_color, linewidth=5)

# Plot the wings
ax.plot(wing_x1, wing_y1, color=wyvern_color, linewidth=5)
ax.plot(wing_x2, wing_y2, color=wyvern_color, linewidth=5)

# Adding details to wyvern (head, tail, eyes)
head = Ellipse((4, 12), 0.5, 0.8, color=wyvern_color, angle=0)
ax.add_patch(head)

tail = FancyArrowPatch((4, 3), (4, 2.5), mutation_scale=15, color=wyvern_color)
ax.add_patch(tail)

# Eye
ax.plot(4.1, 12.2, marker='o', markersize=5, color=eye_color)

# Add elements for togetherness and harmony
# A circle around the wyvern to symbolize unity and harmony
circle = plt.Circle((4, 5), 5, color=wyvern_color, fill=False, linewidth=2, linestyle='--')
ax.add_patch(circle)

# Setting limits and removing axes
ax.set_xlim(0, 10)
ax.set_ylim(0, 15)
ax.axis('off')

# Display the final logo
plt.title('Wyvern Logo with Elements of 10, Courage, Togetherness, and Harmony', fontsize=14)
plt.show()
chatIcon
I've got something exciting, perfect for our chat.
Create AI Character
image
avatar
T
Ta Pratama
Generation Data
Records
Prompts
Copy
import matplotlib . pyplot as plt from matplotlib . patches import FancyArrowPatch , Ellipse , Polygon # Create a new figure for the final logo fig , ax = plt . subplots(figsize=(8 , 8)) # Define colors wyvern_color = "#2a7fff" # A strong blue color for the wyvern (symbolizing courage) eye_color = "#000000" # Black for the eye background_color = "#f0f0f0" # Light grey for background # Set background color fig . patch . set_facecolor(background_color) ax . set_facecolor(background_color) # Wyvern body forming the shape of number 10 theta = np . linspace(0 , 2 * np . pi , 100) x0 = 4 + 2 * np . cos(theta) # Circle for '0' y0 = 5 + 4 * np . sin(theta) # Head and tail forming number '1' x1 = np . linspace(4 , 4 , 100) y1 = np . linspace(8 , 12 , 100) # Adding wings with a more detailed shape wing_x1 = [3 . 5 , 2 . 5 , 4] wing_y1 = [10 , 12 , 11] wing_x2 = [4 . 5 , 5 . 5 , 4] wing_y2 = [10 , 12 , 11] # Plot the body ax . plot(x0 , y0 , color=wyvern_color , linewidth=5) ax . plot(x1 , y1 , color=wyvern_color , linewidth=5) # Plot the wings ax . plot(wing_x1 , wing_y1 , color=wyvern_color , linewidth=5) ax . plot(wing_x2 , wing_y2 , color=wyvern_color , linewidth=5) # Adding details to wyvern (head , tail , eyes) head = Ellipse((4 , 12) , 0 . 5 , 0 . 8 , color=wyvern_color , angle=0) ax . add_patch(head) tail = FancyArrowPatch((4 , 3) , (4 , 2 . 5) , mutation_scale=15 , color=wyvern_color) ax . add_patch(tail) # Eye ax . plot(4 . 1 , 12 . 2 , marker='o' , markersize=5 , color=eye_color) # Add elements for togetherness and harmony # A circle around the wyvern to symbolize unity and harmony circle = plt . Circle((4 , 5) , 5 , color=wyvern_color , fill=False , linewidth=2 , linestyle='--') ax . add_patch(circle) # Setting limits and removing axes ax . set_xlim(0 , 10) ax . set_ylim(0 , 15) ax . axis('off') # Display the final logo plt . title('Wyvern Logo with Elements of 10 , Courage , Togetherness , and Harmony' , fontsize=14) plt . show()
INFO
Prompts
import matplotlib.pyplot as plt from matplotlib.patches import FancyArrowPatch, Ellipse, Polygon # Create a new figure for the final logo fig, ax = plt.subplots(figsize=(8, 8)) # Define colors wyvern_color = "#2a7fff" # A strong blue color for the wyvern (symbolizing courage) eye_color = "#000000" # Black for the eye background_color = "#f0f0f0" # Light grey for background # Set background color fig.patch.set_facecolor(background_color) ax.set_facecolor(background_color) # Wyvern body forming the shape of number 10 theta = np.linspace(0, 2 * np.pi, 100) x0 = 4 + 2 * np.cos(theta) # Circle for '0' y0 = 5 + 4 * np.sin(theta) # Head and tail forming number '1' x1 = np.linspace(4, 4, 100) y1 = np.linspace(8, 12, 100) # Adding wings with a more detailed shape wing_x1 = [3.5, 2.5, 4] wing_y1 = [10, 12, 11] wing_x2 = [4.5, 5.5, 4] wing_y2 = [10, 12, 11] # Plot the body ax.plot(x0, y0, color=wyvern_color, linewidth=5) ax.plot(x1, y1, color=wyvern_color, linewidth=5) # Plot the wings ax.plot(wing_x1, wing_y1, color=wyvern_color, linewidth=5) ax.plot(wing_x2, wing_y2, color=wyvern_color, linewidth=5) # Adding details to wyvern (head, tail, eyes) head = Ellipse((4, 12), 0.5, 0.8, color=wyvern_color, angle=0) ax.add_patch(head) tail = FancyArrowPatch((4, 3), (4, 2.5), mutation_scale=15, color=wyvern_color) ax.add_patch(tail) # Eye ax.plot(4.1, 12.2, marker='o', markersize=5, color=eye_color) # Add elements for togetherness and harmony # A circle around the wyvern to symbolize unity and harmony circle = plt.Circle((4, 5), 5, color=wyvern_color, fill=False, linewidth=2, linestyle='--') ax.add_patch(circle) # Setting limits and removing axes ax.set_xlim(0, 10) ax.set_ylim(0, 15) ax.axis('off') # Display the final logo plt.title('Wyvern Logo with Elements of 10, Courage, Togetherness, and Harmony', fontsize=14) plt.show()
Negative Prompts
verybadimagenegative_v1.3, ng_deepnegative_v1_75t, (ugly face:0.8),cross-eyed,sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), skin spots, acnes, skin blemishes, bad anatomy, DeepNegative, facing away, tilted head, {Multiple people}, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worstquality, low quality, normal quality, jpegartifacts, signature, watermark, username, blurry, bad feet, cropped, poorly drawn hands, poorly drawn face, mutation, deformed, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, extra fingers, fewer digits, extra limbs, extra arms,extra legs, malformed limbs, fused fingers, too many fingers, long neck, cross-eyed,mutated hands, polar lowres, bad body, bad proportions, gross proportions, text, error, missing fingers, missing arms, missing legs, extra digit, extra arms, extra leg, extra foot, ((repeating hair))
CFG Scale
7
Steps
20
Sampler
DPM++ 2M Karras
Seed
2418502139
Clip Skip
1
Image Size
683 X 1024
Model
epiCRealism
Generate
Size
832X1216
Date
Jun 24, 2024
Mode
Default
Type
upscale
Checkpoint & LoRA
epiCRealism
Checkpoint
epiCRealism
#Realistic
#Photography
#Asian Babe
#Stockings
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

gender_swapimg
Gender Swap

Swap genders in photos and videos with SeaArt's AI gender swapper. Enjoy fun and realistic transformations effortlessly, free online!

ghibli_filter_h1img
Studio Ghibli Filter

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

wanimg2vid_h1img
Wan 2.1 Image to Video

Animate photos with realistic motion and cinematic effects.

cartoon_avatar_h1img
Cartoon Avatar Maker

Turn your photos into unique cartoon avatars instantly.

Explore More AI Apps 

Explore Related

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
iconiconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Terms
Privacy 特定商取引法 資金決済法に基づく表示
More