Back

SVG Drawing Match #1347

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Mona Lisa holding a digital tablet in a futuristic landscape"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:rgb(50,70,180);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(100,150,250);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="groundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#7cbb42;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#436b1f;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="150" fill="url(#skyGradient)" />
  <rect y="150" width="300" height="150" fill="url(#groundGradient)" />

  <!-- Futuristic Buildings -->
  <polygon points="50,150 75,50 100,150" fill="rgba(120,120,130,0.8)" />
  <polygon points="200,150 220,70 240,150" fill="rgba(200,200,210,0.8)" />
  <rect x="130" y="100" width="40" height="50" fill="rgba(80,120,150,0.8)" />

  <!-- Mona Lisa -->
  <g transform="translate(80, 100)">
    <ellipse cx="70" cy="50" rx="20" ry="30" fill="#f0c0a0" />
    <ellipse cx="70" cy="50" rx="20" ry="30" fill="none" stroke="#8b6141" stroke-width="2" />
    <path d="M60,50 q10,10 20,0" fill="none" stroke="#5c3b23" stroke-width="1" />
    <path d="M55,45 q5,5 10,0" fill="none" stroke="#382012" stroke-width="1" />
    <path d="M65,45 q5,5 10,0" fill="none" stroke="#382012" stroke-width="1" />
    <ellipse cx="70" cy="65" rx="3" ry="1" fill="#382012" />
    <rect x="50" y="80" width="40" height="60" fill="#274031" />
    <polygon points="50,140 70,110 90,140" fill="#274031" />
  </g>

  <!-- Digital Tablet -->
  <g transform="translate(100, 160)">
    <rect x="20" y="0" width="60" height="40" fill="#333" stroke="#888" stroke-width="2" rx="5" />
    <rect x="25" y="5" width="50" height="30" fill="#222" />
    <g opacity="0.7">
      <circle cx="40" cy="20" r="3" fill="#fff" />
      <path d="M45,20 A5,5 0 0,0 65,20" stroke="#fff" stroke-width="1.5" fill="none" />
      <circle cx="55" cy="20" r="3" fill="#fff" />
    </g>
  </g>

  <!-- Futuristic Landscape -->
  <g opacity="0.2">
    <ellipse cx="150" cy="250" rx="130" ry="20" fill="url(#groundGradient)" />
    <ellipse cx="150" cy="270" rx="150" ry="25" fill="url(#groundGradient)" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skinGradient">
      <stop offset="0%" stop-color="#f8e5d8"/>
      <stop offset="100%" stop-color="#d9a885"/>
    </linearGradient>
    <linearGradient id="tabletGradient">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#3498db"/>
    </linearGradient>
    <pattern id="circuitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 0 L10 10 M10 0 L0 10" stroke="#666" stroke-width="0.5"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <path d="M150 100 Q160 120 150 140 Q140 160 130 140 Q120 120 130 100 Z" fill="url(#skinGradient)" />
  <path d="M120 100 Q110 90 100 100 Q90 110 100 120 Z" fill="#4d4d4d" />
  <path d="M140 100 Q130 90 120 100 Q110 110 120 120 Z" fill="#4d4d4d" />
  <rect x="80" y="150" width="140" height="80" rx="20" fill="url(#tabletGradient)" filter="url(#glow)">
    <animate attributeName="y" from="150" to="145" dur="2s" repeatCount="indefinite" />
  </rect>
  <rect x="90" y="160" width="120" height="60" rx="15" fill="white" opacity="0.8">
    <rect x="10" y="10" width="100" height="40" rx="10" fill="url(#circuitPattern)" />
  </rect>
  <g transform="translate(150,200)">
    <path d="M0 0 L100 0 L50 100 Z" fill="#87CEEB" opacity="0.6">
      <animate attributeName="transform" type="transform" from="0 0 50" to="0 0 50 10" dur="2s" repeatCount="indefinite" />
    </path>
    <path d="M0 0 L-100 0 L-50 100 Z" fill="#87CEEB" opacity="0.6">
      <animate attributeName="transform" type="transform" from="0 0 -50" to="0 0 -50 -10" dur="2s" repeatCount="indefinite" />
    </path>
  </g>
  <rect x="0" y="250" width="300" height="50" rx="25" fill="#2c3e50" />
  <rect x="200" y="220" width="100" height="30" rx="15" fill="url(#tabletGradient)" />
  <path d="M100 50 L150 20 L200 50" stroke="#87CEEB" stroke-width="2" fill="none" />
  <path d="M100 50 Q150 20 200 50" stroke="#87CEEB" stroke-width="2" fill="none" />
  <path d="M100 50 Q150 20 200 50" stroke="#87CEEB" stroke-width="2" fill="none" />
  <g transform="translate(150,100)">
    <path d="M0 0 L20 20 L-20 20 Z" fill="#87CEEB" opacity="0.6" />
    <path d="M0 0 L20 -20 L-20 -20 Z" fill="#87CEEB" opacity="0.6" />
  </g>
  <rect x="50" y="200" width="200" height="50" rx="25" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="60" y="210" width="180" height="30" rx="15" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="70" y="220" width="160" height="10" rx="5" fill="#87CEEB" opacity="0.4" />
  <rect x="250" y="250" width="50" height="50" rx="25" fill="#2c3e50" />
  <rect x="250" y="250" width="50" height="50" rx="25" fill="#2c3e50" opacity="0.5" />
  <path d="M250 250 L275 275 L250 275 Z" fill="#3498db" />
  <path d="M250 250 L275 275 L250 275 Z" fill="#3498db" opacity="0.5" />
  <rect x="20" y="20" width="260" height="260" rx="20" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="30" y="30" width="240" height="240" rx="15" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="40" y="40" width="220" height="220" rx="10" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="50" y="50" width="200" height="200" rx="5" fill="none" stroke="#87CEEB" stroke-width="2" />
  <rect x="60" y="60" width="180" height="180" rx="0" fill="none" stroke="#87CEEB" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission demonstrates a more creative and futuristic interpretation of the prompt, incorporating abstract elements and digital motifs that enhance the theme.

    The technical execution is more sophisticated, with a layered composition that adds depth and interest.

    In contrast, Player 1's image is simpler and lacks the intricate details and futuristic elements present in Player 2's work.

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
20
Player 2
28
Rectangles

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

Player 1
6
Player 2
15
Circles

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

Player 1
2
Player 2
Ellipses

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

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

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

Player 1
4
Player 2
13
Groups

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

Player 1
4
Player 2
2

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
8

Interactivity Metrics

Animations

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

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
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
8
Player 2
48
Max Group Nesting

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

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