Back

SVG Drawing Match #1322

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A lion mane made of books encircling Albert Einstein's smiling face"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="faceGradient" cx="150" cy="150" r="80" fx="150" fy="150">
      <stop offset="0%" style="stop-color:#fcc9a5"/>
      <stop offset="100%" style="stop-color:#f7b079"/>
    </radialGradient>
    <radialGradient id="bookGradient" cx="150" cy="150" r="80" fx="150" fy="150">
      <stop offset="0%" style="stop-color:#5a5a5a"/>
      <stop offset="100%" style="stop-color:#333"/>
    </radialGradient>
  </defs>

  <!-- Albert Einstein's face -->
  <circle cx="150" cy="150" r="80" fill="url(#faceGradient)" stroke="#a57468" stroke-width="2"/>

  <!-- Smile -->
  <path d="M115,175 Q150,205 185,175" fill="none" stroke="#a57468" stroke-width="4" stroke-linecap="round"/>

  <!-- Eyes -->
  <circle cx="130" cy="130" r="7" fill="#333"/>
  <circle cx="170" cy="130" r="7" fill="#333"/>

  <!-- Books as lion's mane -->
  <g>
    <rect x="50" y="40" width="60" height="25" fill="url(#bookGradient)" transform="rotate(20 150 150)"/>
    <rect x="70" y="25" width="50" height="25" fill="url(#bookGradient)" transform="rotate(45 150 150)"/>
    <rect x="105" y="15" width="40" height="25" fill="url(#bookGradient)" transform="rotate(70 150 150)"/>
    <rect x="140" y="10" width="35" height="25" fill="url(#bookGradient)" transform="rotate(95 150 150)"/>
    <rect x="170" y="15" width="40" height="25" fill="url(#bookGradient)" transform="rotate(120 150 150)"/>
    <rect x="200" y="30" width="45" height="25" fill="url(#bookGradient)" transform="rotate(145 150 150)"/>
    <rect x="215" y="55" width="60" height="25" fill="url(#bookGradient)" transform="rotate(170 150 150)"/>
    <rect x="215" y="90" width="60" height="25" fill="url(#bookGradient)" transform="rotate(200 150 150)"/>
    <rect x="200" y="135" width="55" height="25" fill="url(#bookGradient)" transform="rotate(230 150 150)"/>
    <rect x="175" y="165" width="50" height="25" fill="url(#bookGradient)" transform="rotate(260 150 150)"/>
    <rect x="140" y="180" width="40" height="25" fill="url(#bookGradient)" transform="rotate(290 150 150)"/>
    <rect x="100" y="175" width="35" height="25" fill="url(#bookGradient)" transform="rotate(320 150 150)"/>
    <rect x="70" y="155" width="30" height="25" fill="url(#bookGradient)" transform="rotate(350 150 150)"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="faceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f5cba7"/>
      <stop offset="100%" stop-color="#d5a76f"/>
    </radialGradient>
    <linearGradient id="maneGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#6a89cc"/>
      <stop offset="100%" stop-color="#273c75"/>
    </linearGradient>
    <pattern id="bookPattern" patternUnits="userSpaceOnUse" width="20" height="30">
      <rect width="20" height="30" fill="#f9ca24" stroke="#e1b12c" stroke-width="1"/>
      <line x1="5" y1="5" x2="15" y2="5" stroke="#e1b12c" stroke-width="0.5"/>
      <line x1="5" y1="15" x2="15" y2="15" stroke="#e1b12c" stroke-width="0.5"/>
      <line x1="5" y1="25" x2="15" y2="25" stroke="#e1b12c" stroke-width="0.5"/>
    </pattern>
  </defs>
  
  <!-- Lion Mane made of books -->
  <g transform="translate(150,150)">
    <circle r="100" fill="url(#maneGradient)" />
    <g>
      <circle r="100" fill="url(#bookPattern)" clip-path="url(#clipBooks)" />
    </g>
  </g>
  
  <!-- Einstein's Face -->
  <g transform="translate(150,150)">
    <!-- Face -->
    <circle r="60" fill="url(#faceGradient)" stroke="#e0ac69" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-20" cy="-10" r="5" fill="#000"/>
    <circle cx="20" cy="-10" r="5" fill="#000"/>
    <!-- Smile -->
    <path d="M-20,20 C-10,30 10,30 20,20" stroke="#000" stroke-width="2" fill="none"/>
    <!-- Hair -->
    <path d="M-40,-40 Q0,-80 40,-40" fill="#2c3e50"/>
    <path d="M-35,-35 Q0,-70 35,-35" fill="#34495e"/>
  </g>
  
  <!-- Books around the mane -->
  <g transform="translate(150,150)">
    <g>
      <!-- Duplicate book shapes around the circle -->
      <g id="book" transform="rotate(0)">
        <rect x="80" y="-10" width="15" height="25" fill="#f39c12" stroke="#e67e22" stroke-width="1"/>
        <line x1="80" y1="5" x2="95" y2="5" stroke="#e67e22" stroke-width="0.5"/>
        <line x1="80" y1="12" x2="95" y2="12" stroke="#e67e22" stroke-width="0.5"/>
        <line x1="80" y1="19" x2="95" y2="19" stroke="#e67e22" stroke-width="0.5"/>
      </g>
      <!-- Repeat books around 360 degrees -->
      <use href="#book" transform="rotate(0)"/>
      <use href="#book" transform="rotate(30)"/>
      <use href="#book" transform="rotate(60)"/>
      <use href="#book" transform="rotate(90)"/>
      <use href="#book" transform="rotate(120)"/>
      <use href="#book" transform="rotate(150)"/>
      <use href="#book" transform="rotate(180)"/>
      <use href="#book" transform="rotate(210)"/>
      <use href="#book" transform="rotate(240)"/>
      <use href="#book" transform="rotate(270)"/>
      <use href="#book" transform="rotate(300)"/>
      <use href="#book" transform="rotate(330)"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt with a clear depiction of a mane made of books surrounding a smiling face.

    The use of colors and the arrangement of books create a visually appealing and creative interpretation.

    Player 1's image lacks clarity in the representation of books and is less visually cohesive compared to Player 2's more polished execution.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
17
Player 2
16
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
13
Player 2
2
Circles

The number of circle elements (circle) in the SVG.

Player 1
3
Player 2
5
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
6
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
1
Player 2
3
Groups

The number of group elements (g) in the SVG.

Player 1
1
Player 2
6

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
2
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
12

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
13
Player 2
16

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
2
Player 2
6
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
2
Player 2
3
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2
12

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges