Back

SVG Drawing Match #820

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dandelion blowing bubbles instead of seeds"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="bubbleGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,191,255);stop-opacity:0.8" />
    </radialGradient>
    <pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="30" height="30">
      <circle cx="15" cy="15" r="10" fill="url(#bubbleGrad)" />
    </pattern>
  </defs>
  <g transform="translate(150 150)">
    <circle cx="0" cy="-120" r="30" fill="url(#grad1)" />
    <circle cx="0" cy="-120" r="28" fill="white" stroke="black" stroke-width="2" />
    <g transform="rotate(0)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(45)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(90)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(135)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(180)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(225)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(270)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <g transform="rotate(315)">
      <circle cx="0" cy="-100" r="3" fill="url(#bubblePattern)" />
      <circle cx="0" cy="-100" r="2" fill="white" stroke="black" stroke-width="1" />
    </g>
    <path d="M 0 -120 L 0 120" stroke="black" stroke-width="2" fill="none" />
    <path d="M -30 -100 Q 0 -50 30 -100" stroke="black" stroke-width="2" fill="none" />
    <path d="M -40 -70 Q 0 -20 40 -70" stroke="black" stroke-width="2" fill="none" />
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#f7f4e4" rx="20" />
  
  <!-- Dandelion Stem -->
  <path d="M150 100 L150 200" stroke="#8b9467" stroke-width="10" fill="none" />
  
  <!-- Dandelion Head -->
  <circle cx="150" cy="100" r="30" fill="#f2c464" />
  <circle cx="150" cy="100" r="20" fill="#ffd700" />
  <circle cx="150" cy="100" r="10" fill="#ffffff" />
  
  <!-- Bubbles -->
  <circle cx="170" cy="120" r="10" fill="#ffffff" opacity="0.7" />
  <circle cx="180" cy="140" r="15" fill="#ffffff" opacity="0.5" />
  <circle cx="190" cy="160" r="20" fill="#ffffff" opacity="0.3" />
  <circle cx="200" cy="180" r="25" fill="#ffffff" opacity="0.1" />
  
  <!-- Bubble Trails -->
  <path d="M170 120 C170 130 180 140 190 150" stroke="#ffffff" stroke-width="2" stroke-dasharray="5 5" fill="none" opacity="0.5" />
  <path d="M180 140 C180 150 190 160 200 170" stroke="#ffffff" stroke-width="2" stroke-dasharray="5 5" fill="none" opacity="0.3" />
  <path d="M190 160 C190 170 200 180 210 190" stroke="#ffffff" stroke-width="2" stroke-dasharray="5 5" fill="none" opacity="0.1" />
  
  <!-- Light Effect -->
  <circle cx="150" cy="100" r="40" fill="url(#glow)" />
  <radialGradient id="glow" cx="150" cy="100" r="40" fx="150" fy="100">
    <stop offset="0" stop-color="#ffffff" stop-opacity="0.5" />
    <stop offset="1" stop-color="#ffffff" stop-opacity="0" />
  </radialGradient>
  
  <!-- Shadows -->
  <circle cx="150" cy="100" r="30" fill="#8b9467" opacity="0.2" />
  <circle cx="150" cy="100" r="20" fill="#8b9467" opacity="0.4" />
  <circle cx="150" cy="100" r="10" fill="#8b9467" opacity="0.6" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 2

Judge's Analysis

    Player 2's submission is more visually appealing with its soft color palette and minimalist design, which effectively communicates the concept of a dandelion blowing bubbles.

    The use of transparency and shading enhances the bubble effect, adhering well to the prompt.

    In contrast, Player 1's image lacks clarity and aesthetic appeal, making it less effective in conveying the idea.

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
22
Player 2
16
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
19
Player 2
11
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
3
Player 2
4
Groups

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

Player 1
9
Player 2

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
5

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
9
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
6
Player 2
8
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
3
Player 2
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