Back

SVG Drawing Match #967

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon flamingo in a glass bottle, pop art style"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="neonGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgba(255,183,197,1); stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgba(255,99,132,0);" />
    </radialGradient>
    <linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff66b3; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff1cce; stop-opacity:1" />
    </linearGradient>
    <pattern id="bottlePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" style="fill:#ccf;opacity:0.5" />
    </pattern>
  </defs>

  <!-- Background Glow -->
  <rect x="0" y="0" width="300" height="300" fill="url(#neonGlow)" />

  <!-- Glass Bottle -->
  <path d="M85 20 C80 50, 80 250, 85 280 C90 290, 210 290, 215 280 C220 250, 220 50, 215 20 Z" 
        fill="url(#bottlePattern)" stroke="#99f" stroke-width="2" stroke-opacity="0.7" />

  <!-- Flamingo Body -->
  <path d="M150 160 C120 120, 180 90, 150 60 C130 60, 140 100, 110 120 C90 140, 95 190, 130 190 Z"
        fill="url(#flamingoGradient)" stroke="#ff1cce" stroke-width="2" />

  <!-- Flamingo Head -->
  <circle cx="150" cy="60" r="10" fill="#ff66b3" stroke="#ff1cce" stroke-width="2" />

  <!-- Flamingo Eye -->
  <circle cx="147" cy="58" r="2" fill="#fff" />

  <!-- Flamingo Neck -->
  <path d="M150 70 Q160 90, 160 120" stroke="#ff66b3" stroke-width="3" fill="none" />

  <!-- Decorative Elements -->
  <circle cx="150" cy="150" r="50" fill="none" stroke="#ff66b3" stroke-width="2" stroke-dasharray="5,5" />
  <path d="M145 200 L155 200 Q175 210, 145 230 L155 230"
        stroke="#ff1cce" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" />

  <!-- Pop Art Dots -->
  <path d="M110 130 Q130 100, 120 70 M160 160 Q140 130, 150 100 M180 200 Q190 170, 180 140"
        stroke="rgba(255,99,132,0.5)" stroke-width="1" fill="none" stroke-dasharray="2,2" />

</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with dynamic patterns -->
  <rect width="300" height="300" fill="url(#bg-pattern)" />
  
  <!-- Glass bottle with gradient and transparency -->
  <defs>
    <linearGradient id="glass-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f0f8ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#a1c4fd" stop-opacity="0.5"/>
    </linearGradient>
    <filter id="glow-filter">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Bottle shape -->
  <path d="M120 240c-30 0-60-10-60-30 0-20 10-35 30-35 20 0 30 10 30 30-10 25-30 40-50 40-20 0-35-15-35-35 0-30 20-50 50-50 20 0 35 15 35 35-10-25 10-40 30-40 20 0 35 10 35 35 0 10-10 20-20 25-5 5-10 5-15 0-10-10-20-15-25-5-5-5-10-5-15 0-5 5-10 10-15 5-5 10-5 15 0 5 5 10 10 15 5 5 5 10 10 15 0 5-5 10-5 15-10 5-15 0-15-10-20-5-30-50-25-50-50-50-50-50 0-50 50 0 50 50 50 50 50 50 50 50 0 0-50-50-50-50zM150 50c0-30-20-50-50-50-30 0-50 20-50 50 0 30 20 50 50 50 30 0 50-20 50-50z" fill="url(#glass-gradient)" />
  
  <!-- Flamingo with neon effect -->
  <g transform="translate(140 120)" filter="url(#glow-filter)">
    <path d="M0 0l80-20 40 40-40 40-20 80-40 0-20-40-40-40-40 0-20-40-80 20-40-40-20-80 0-40 20 40-20 80 40 40 20 80 0 40 20 80 40 40 20 80 0 40 20 80 40 40 20 80 0 40 20 80 40 40 20 80 0 40 20 80 40 40 20 80 0 40z" fill="#ff69b4" />
  </g>

  <!-- Background pattern -->
  <defs>
    <pattern id="bg-pattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect width="100" height="100" fill="#ffd700" />
      <circle cx="50" cy="50" r="40" fill="#ff6b6b" opacity="0.5" />
      <path d="M0 0l100 100m-100-100l100 100" stroke="#ff1493" stroke-width="5" opacity="0.3" />
    </pattern>
  </defs>

  <!-- Water inside bottle -->
  <rect x="80" y="180" width="140" height="60" fill="url(#glass-gradient)" opacity="0.3" />
  
  <!-- Bubbles -->
  <circle cx="150" cy="200" r="10" fill="#ffffff" opacity="0.6" />
  <circle cx="170" cy="190" r="8" fill="#ffffff" opacity="0.6" />
  <circle cx="130" cy="210" r="6" fill="#ffffff" opacity="0.6" />
  
  <!-- Bottle glow effect -->
  <circle cx="150" cy="120" r="70" fill="none" stroke="#ff00ff" stroke-width="2" opacity="0.3" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission clearly depicts a neon flamingo within a glass bottle, maintaining adherence to the prompt.

    The use of bright pinks and blues effectively captures the pop art style.

    In contrast, Player 2's image lacks clarity and direct representation of the theme, making Player 1's entry more compelling and visually coherent.

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

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

Player 1
1
Player 2
3
Circles

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
8

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
1

Complexity Metrics

Path Commands

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

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