Back

SVG Drawing Match #1240

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A geometric dragon made of interconnected triangles breathing binary code fire"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,0,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    </linearGradient>
  </defs>
  <polygon points="150,10 190,70 110,70" fill="url(#grad1)" />
  <polygon points="190,70 230,130 170,130" fill="url(#grad2)" />
  <polygon points="110,70 150,130 110,190" fill="url(#grad3)" />
  <polygon points="150,130 190,190 110,190" fill="url(#grad1)" />
  <polygon points="190,190 230,250 170,250" fill="url(#grad2)" />
  <polygon points="110,190 150,250 110,310" fill="url(#grad3)" />
  <polygon points="150,250 190,310 110,310" fill="url(#grad1)" />
  <path d="M150,10 L190,70 L110,70 L150,10" fill="none" stroke="white" stroke-width="2"/>
  <path d="M190,70 L230,130 L170,130 L190,70" fill="none" stroke="white" stroke-width="2"/>
  <path d="M110,70 L150,130 L110,190 L110,70" fill="none" stroke="white" stroke-width="2"/>
  <path d="M150,130 L190,190 L110,190 L150,130" fill="none" stroke="white" stroke-width="2"/>
  <path d="M190,190 L230,250 L170,250 L190,190" fill="none" stroke="white" stroke-width="2"/>
  <path d="M110,190 L150,250 L110,310 L110,190" fill="none" stroke="white" stroke-width="2"/>
  <path d="M150,250 L190,310 L110,310 L150,250" fill="none" stroke="white" stroke-width="2"/>
  <text x="220" y="250" font-family="Arial" font-size="12" fill="white">10101010101010101010101010101010</text>
  <text x="225" y="265" font-family="Arial" font-size="12" fill="white">10101010101010101010101010101010</text>
  <text x="230" y="280" font-family="Arial" font-size="12" fill="white">10101010101010101010101010101010</text>
  <text x="235" y="295" font-family="Arial" font-size="12" fill="white">10101010101010101010101010101010</text>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4A90E2;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9013FE;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="fireGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FF512F;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#DD2476;stop-opacity:1" />
    </linearGradient>
    <pattern id="binaryPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <text x="0" y="10" font-family="monospace" font-size="8" fill="#ffffff">01010101</text>
    </pattern>
    <mask id="fireMask">
      <rect width="300" height="300" fill="url(#binaryPattern)" />
    </mask>
  </defs>
  
  <!-- Dragon Body -->
  <g id="dragon" fill="url(#dragonGradient)" stroke="#ffffff" stroke-width="1">
    <polygon points="150,30 130,70 170,70" />
    <polygon points="130,70 110,110 150,110 170,70" />
    <polygon points="150,110 130,150 170,150" />
    <polygon points="130,150 110,190 150,190 170,150" />
    <polygon points="150,190 130,230 170,230" />
    <polygon points="170,70 200,110 180,150 170,150" />
    <polygon points="130,70 100,110 120,150 130,150" />
    <polygon points="150,230 140,270 160,270" />
    <polygon points="160,270 150,300 140,270" />
    <polygon points="150,30 170,70 200,50 180,20" />
    <polygon points="150,30 130,70 100,50 120,20" />
    <polygon points="180,20 200,50 220,30 200,10" />
    <polygon points="120,20 100,50 80,30 100,10" />
  </g>
  
  <!-- Fire -->
  <g id="fire" mask="url(#fireMask)">
    <path d="M150,230 C160,210 170,210 180,230 S200,270 150,300 S100,270 120,230 C130,210 140,210 150,230 Z" fill="url(#fireGradient)" opacity="0.8"/>
  </g>
  
  <!-- Binary Code -->
  <g id="binaryCode" font-family="monospace" font-size="8" fill="#FFFFFF" opacity="0.7">
    <text x="130" y="240">01001000 01100101 01101100</text>
    <text x="130" y="250">01101100 01101111 00100000</text>
    <text x="130" y="260">01000100 01110010 01100001</text>
    <text x="130" y="270">01100111 01101111 01101110</text>
    <text x="130" y="280">01100110 01101001 01110010</text>
    <text x="130" y="290">01100101</text>
  </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 more effectively captures the prompt with a complex geometric form that resembles a dragon, enhanced by the creative use of color gradients.

    The binary code fire is visually integrated with a dynamic flow, adding to the overall appeal and adherence to the theme.

    Player 1's image, while colorful, lacks the distinct dragon-like structure and creativity in the representation of binary code fire.

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
14
Player 2
15
Rectangles

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

Player 1
Player 2
1
Circles

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

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

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

Player 1
7
Player 2
1
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
1

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
28
Player 2
6
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
3
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
4
Player 2
7

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