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()](https://image.cdn2.seaart.me/2025-01-21/cu7qdhte878c73dm2br0-3/f0487708fc4b5bdb4af40b8262a12f0e_high.webp)
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
Checkpoint & LoRA

Checkpoint
epiCRealism
#Realistic
#Photography
#Asian Babe
#Stockings
0 comment
0
0
0