Back

SVG Drawing Match #1319

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Van Gogh's face composed entirely of swirling galaxy patterns"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#0b0b2d;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a1a4f;stop-opacity:0" />
    </linearGradient>
    <path id="swirl" d="M50,50 C80,50 100,80 100,100 C100,120 80,140 50,140 C20,140 0,120 0,100 C0,80 20,50 50,50 Z" />
  </defs>

  <rect width="300" height="300" fill="url(#spaceGradient)" />
  
  <!-- Face Shape -->
  <path d="M75,100 C75,130 100,160 125,160 C150,160 175,130 175,100 C175,70 150,40 125,40 C100,40 75,70 75,100 Z" fill="#2d1a4f" opacity="0.8" />
  
  <!-- Eyes -->
  <circle cx="100" cy="110" r="25" fill="url(#spaceGradient)" filter="blur(5px)" />
  <circle cx="200" cy="110" r="25" fill="url(#spaceGradient)" filter="blur(5px)" />
  
  <!-- Nose -->
  <path d="M150,120 L160,130 L140,130 Z" fill="#4f2d1a" opacity="0.8" />
  
  <!-- Mouth -->
  <path d="M130,140 Q150,135 170,140" stroke="#4f2d1a" stroke-width="2" fill="none" />
  
  <!-- Hair -->
  <path d="M75,80 Q90,60 120,40 150,20 180,40 210,60 225,80 220,100 200,120 180,140 160,120 140,100 100,80" fill="#2d1a4f" opacity="0.8" />
  
  <!-- Galaxy Effects -->
  <use xlink:href="#swirl" x="0" y="0" fill="#4f2d1a" opacity="0.4" />
  <use xlink:href="#swirl" x="100" y="100" fill="#1a4f4f" opacity="0.4" />
  <use xlink:href="#swirl" x="200" y="0" fill="#4f2d1a" opacity="0.4" />
  
  <!-- Stars -->
  <circle cx="50" cy="50" r="1" fill="white" filter="blur(2px)" />
  <circle cx="250" cy="50" r="1" fill="white" filter="blur(2px)" />
  <circle cx="150" cy="250" r="1" fill="white" filter="blur(2px)" />
  <circle cx="100" cy="150" r="1" fill="white" filter="blur(2px)" />
  <circle cx="200" cy="150" r="1" fill="white" filter="blur(2px)" />
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="gradient1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="blue"/>
      <stop offset="50%" stop-color="purple"/>
      <stop offset="100%" stop-color="black"/>
    </linearGradient>
    <linearGradient id="gradient2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="yellow"/>
      <stop offset="50%" stop-color="orange"/>
      <stop offset="100%" stop-color="red"/>
    </linearGradient>
    <linearGradient id="gradient3" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="cyan"/>
      <stop offset="50%" stop-color="white"/>
      <stop offset="100%" stop-color="magenta"/>
    </linearGradient>
    <pattern id="galaxyPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="30" fill="url(#gradient1)"/>
      <circle cx="20" cy="20" r="10" fill="url(#gradient2)"/>
      <circle cx="80" cy="80" r="15" fill="url(#gradient3)"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="black"/>
  <g fill="url(#galaxyPattern)">
    <path d="M150,50 C180,100 220,150 150,200 C80,150 120,100 150,50 Z" />
    <path d="M150,100 C160,120 140,120 150,100 C160,80 140,80 150,100 Z" />
    <path d="M130,120 C135,130 125,130 130,120 Z" />
    <path d="M170,120 C175,130 165,130 170,120 Z" />
    <path d="M150,150 C160,160 140,160 150,150 Z" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission creatively uses abstract shapes and vibrant colors to suggest a face, capturing the essence of swirling galaxy patterns.

    While both entries are abstract, Player 2's image more effectively adheres to the prompt by evoking the cosmic and dynamic feel associated with both Van Gogh's style and a galaxy.

    Player 1's image lacks the necessary detail and complexity to meet the prompt's requirements effectively.

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
13
Player 2
9
Rectangles

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

Player 1
1
Player 2
1
Circles

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
3
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
6
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
9

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
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
20
Player 2
17
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
2
Player 2
4
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