Back

SVG Drawing Match #2356

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An owl wearing a crown, perched on a crescent moon at dusk."

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient Sky -->
  <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
    <stop offset="0" stop-color="#ff69b4" />
    <stop offset="0.5" stop-color="#ffc0cb" />
    <stop offset="1" stop-color="#ffe6f7" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" rx="20" />

  <!-- Crescent Moon -->
  <clipPath id="moonClip">
    <path d="M150 150 L150 50 C150 20 120 0 90 0 L90 50 Z" fill="#fff" />
  </clipPath>
  <circle cx="150" cy="150" r="120" fill="#fff" clip-path="url(#moonClip)" />

  <!-- Owl -->
  <g transform="translate(150 150)">
    <!-- Body -->
    <path d="M-30 -20 C-30 -40 -10 -60 30 -60 L30 30 L-30 30 Z" fill="#f7dc6f" />
    <!-- Wings -->
    <path d="M-60 -20 L-60 -40 C-60 -60 -40 -80 -20 -80 L-20 -40 Z" fill="#f7dc6f" />
    <path d="M60 -20 L60 -40 C-60 -60 -40 -80 -20 -80 L-20 -40 Z" fill="#f7dc6f" />
    <!-- Head -->
    <circle cx="0" cy="-40" r="20" fill="#f7dc6f" />
    <!-- Eyes -->
    <circle cx="-10" cy="-50" r="2" fill="#000" />
    <circle cx="10" cy="-50" r="2" fill="#000" />
    <!-- Crown -->
    <path d="M-20 -70 C-20 -60 0 -50 20 -60 C20 -70 0 -80 -20 -80 L-20 -60 Z" fill="#ffd700" />
  </g>

  <!-- Stars -->
  <symbol id="star">
    <path d="M0 -10 L5 5 L0 20 L-5 5 Z" fill="#fff" />
  </symbol>
  <use href="#star" x="100" y="50" />
  <use href="#star" x="200" y="100" />
  <use href="#star" x="50" y="150" />
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2e0249"/>
      <stop offset="100%" stop-color="#f3a683"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.4" cy="0.4" r="0.6">
      <stop offset="0%" stop-color="#fefecd"/>
      <stop offset="100%" stop-color="#f7d358"/>
    </radialGradient>
    <mask id="crescentMask">
      <rect width="300" height="300" fill="white"/>
      <circle cx="215" cy="130" r="70" fill="black"/>
    </mask>
    <pattern id="featherPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,10 Q5,0 10,10" stroke="#a8906c" stroke-width="2" fill="none"/>
    </pattern>
    <linearGradient id="crownGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#ffaa00"/>
    </linearGradient>
    <radialGradient id="eyeGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffe066"/>
      <stop offset="100%" stop-color="#ff6b6b"/>
    </radialGradient>
    <radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
    </radialGradient>
    <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
      <feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="#000000" flood-opacity="0.5"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g mask="url(#crescentMask)">
    <circle cx="200" cy="120" r="80" fill="url(#moonGradient)"/>
  </g>
  <g filter="url(#shadow)">
    <ellipse cx="180" cy="185" rx="30" ry="45" fill="#8b6e4e"/>
    <ellipse cx="180" cy="195" rx="20" ry="25" fill="url(#featherPattern)"/>
    <circle cx="180" cy="125" r="25" fill="#8b6e4e"/>
    <circle cx="170" cy="120" r="15" fill="#f2e0c4"/>
    <circle cx="190" cy="120" r="15" fill="#f2e0c4"/>
    <circle cx="170" cy="120" r="7" fill="url(#eyeGradient)"/>
    <circle cx="190" cy="120" r="7" fill="url(#eyeGradient)"/>
    <circle cx="171" cy="121" r="3" fill="#000"/>
    <circle cx="191" cy="121" r="3" fill="#000"/>
    <path d="M180,135 L175,145 L185,145 Z" fill="#e09f3e"/>
    <path d="M150,155 Q180,130 210,155 Q180,140 150,155" fill="#8b6e4e" opacity="0.8"/>
    <path d="M150,190 Q180,160 210,190 Q180,175 150,190" fill="#8b6e4e" opacity="0.8"/>
    <path d="M145,95 L155,80 L160,95 L165,80 L175,95 L175,100 L145,100 Z" fill="url(#crownGradient)" stroke="#cc9900" stroke-width="1"/>
  </g>
  <circle cx="50" cy="30" r="3" fill="url(#starGradient)"/>
  <circle cx="250" cy="40" r="4" fill="url(#starGradient)"/>
  <circle cx="280" cy="200" r="3.5" fill="url(#starGradient)"/>
  <circle cx="30" cy="200" r="2.5" fill="url(#starGradient)"/>
  <circle cx="150" cy="40" r="3" fill="url(#starGradient)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission closely adheres to the prompt by including a clearly recognizable owl wearing a crown, perched on a crescent moon at dusk.

    The composition is detailed, visually appealing, and demonstrates strong technical quality.

    Player 1's submission, while colorful, lacks clear elements of the prompt and appears abstract rather than representational.

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
11
Player 2
23
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
4
Player 2
14
Ellipses

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

Player 1
Player 2
2
Lines

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

Player 1
Player 2
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
6
Player 2
5
Groups

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
5
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
1
Masks

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

Player 1
Player 2
1
Clip Paths

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

Player 1
1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
16

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
1
Player 2

Complexity Metrics

Path Commands

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

Player 1
30
Player 2
20
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

Player 1
Player 2
8
Use Elements

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

Player 1
3
Player 2

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