Back

SVG Drawing Match #2094

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal cactus with birdhouses as branches and birds wearing tiny hats"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#5B3E8C"/>
      <stop offset="100%" style="stop-color:#FF9D6C"/>
    </linearGradient>
    <pattern id="cactusTexture" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,5 L10,5 M5,0 L5,10" stroke="#45855B" stroke-width="0.5" opacity="0.3"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Main Cactus Body -->
  <path d="M140,280 Q130,150 150,100 T160,40" stroke="#2D5A3D" stroke-width="25" fill="url(#cactusTexture)"/>

  <!-- Birdhouse 1 -->
  <g transform="translate(120,80) rotate(-15)">
    <rect x="-20" y="-20" width="40" height="35" fill="#E76F51"/>
    <path d="M-25,-20 L20,-20 L-2.5,-40 Z" fill="#2A9D8F"/>
    <circle cx="0" cy="0" r="5" fill="#264653"/>
  </g>

  <!-- Birdhouse 2 -->
  <g transform="translate(180,120) rotate(15)">
    <rect x="-20" y="-20" width="40" height="35" fill="#F4A261"/>
    <path d="M-25,-20 L20,-20 L-2.5,-40 Z" fill="#E9C46A"/>
    <circle cx="0" cy="0" r="5" fill="#264653"/>
  </g>

  <!-- Birds -->
  <g transform="translate(100,70)">
    <path d="M0,0 Q5,-5 10,0 T20,0" fill="#FF6B6B"/>
    <circle cx="15" cy="-5" r="5" fill="#FF6B6B"/>
    <circle cx="17" cy="-7" r="2" fill="black"/>
    <!-- Top Hat -->
    <rect x="12" y="-15" width="6" height="6" fill="#1A1A1A"/>
    <rect x="10" y="-9" width="10" height="2" fill="#1A1A1A"/>
  </g>

  <g transform="translate(190,110)">
    <path d="M0,0 Q5,-5 10,0 T20,0" fill="#4ECDC4"/>
    <circle cx="15" cy="-5" r="5" fill="#4ECDC4"/>
    <circle cx="17" cy="-7" r="2" fill="black"/>
    <!-- Bowler Hat -->
    <path d="M12,-15 Q15,-18 18,-15 Q20,-12 16,-12 Q12,-12 12,-15" fill="#333"/>
  </g>

  <!-- Cactus Spines -->
  <g stroke="#45855B" stroke-width="2">
    <line x1="130" y1="100" x2="120" y2="90"/>
    <line x1="135" y1="150" x2="125" y2="140"/>
    <line x1="165" y1="120" x2="175" y2="110"/>
    <line x1="170" y1="170" x2="180" y2="160"/>
  </g>

  <!-- Desert Ground -->
  <path d="M0,280 Q75,260 150,280 T300,280 L300,300 L0,300 Z" fill="#FDD085"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and subtle pattern -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#87CEEB" />
      <stop offset="1" stop-color="#E0F6FF" />
    </linearGradient>
    <pattern id="cactusTexture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="#8B4513" />
    </pattern>
  </defs>

  <!-- Cactus trunk with texture -->
  <path d="M150,230 L120,220 L180,220 L150,200 L100,190 L200,190 L150,170 L120,160 L180,160 L150,150 L110,140 L190,140 L150,130 Z"
        fill="url(#cactusTexture)" stroke="#8B4513" stroke-width="2" />

  <!-- Birdhouse branches -->
  <g transform="translate(150,170)">
    <!-- Left branch -->
    <rect x="-50" y="-30" width="60" height="40" fill="#FFB6C1" rx="5" />
    <rect x="-55" y="-35" width="70" height="50" fill="#FF99CC" rx="10" />
    <path d="M-50,-40 L-40,-50 L-20,-50 L-30,-40" fill="#FF69B4" />
    <!-- Bird on branch -->
    <circle cx="-30" cy="-45" r="8" fill="#FFF">
      <animate attributeName="cy" from="-45" to="-40" dur="1s" repeatCount="indefinite" />
    </circle>
    <path d="M-35,-50 L-25,-50 L-30,-55" fill="#FF69B4" />
    <circle cx="-30" cy="-52" r="2" fill="#000" />
  </g>

  <!-- Right branch -->
  <g transform="translate(150,150)">
    <rect x="-50" y="-30" width="60" height="40" fill="#FFB6C1" rx="5" />
    <rect x="-55" y="-35" width="70" height="50" fill="#FF99CC" rx="10" />
    <path d="M-50,-40 L-40,-50 L-20,-50 L-30,-40" fill="#FF69B4" />
    <!-- Bird on branch -->
    <circle cx="-30" cy="-45" r="8" fill="#FFF">
      <animate attributeName="cy" from="-45" to="-40" dur="1s" repeatCount="indefinite" />
    </circle>
    <path d="M-35,-50 L-25,-50 L-30,-55" fill="#FF69B4" />
    <circle cx="-30" cy="-52" r="2" fill="#000" />
  </g>

  <!-- Flying bird -->
  <g transform="translate(250,100)">
    <circle cx="0" cy="0" r="8" fill="#FFF" />
    <path d="M0,0 L10,-20 L-10,-20 Z" fill="#FFF" />
    <circle cx="5" cy="-2" r="2" fill="#000" />
    <circle cx="-5" cy="-2" r="2" fill="#000" />
    <path d="M-8,-15 L8,-15 L0,-25" fill="#FF69B4" />
  </g>

  <!-- Ground with subtle texture -->
  <rect x="0" y="240" width="300" height="60" fill="#DEB887" />
  <path d="M0,240 Q150,260 300,240 Q240,240 150,220 Z" fill="#8B4513" opacity="0.3" />

  <!-- Decorative sun -->
  <g transform="translate(250,50)">
    <circle r="30" fill="#F4D03F" />
    <path d="M0,0 L30,0 L15,15 L0,30 L-15,15 L-30,0 L-15,-15 L0,-30 L15,-15 Z" fill="#F4D03F" />
    <circle cx="15" cy="15" r="5" fill="#FF6B35" />
    <circle cx="15" cy="-15" r="5" fill="#FF6B35" />
    <circle cx="-15" cy="15" r="5" fill="#FF6B35" />
    <circle cx="-15" cy="-15" r="5" fill="#FF6B35" />
  </g>

  <!-- Flowers around base -->
  <g transform="translate(150,240)" opacity="0.8">
    <circle cx="-50" cy="0" r="10" fill="#FF69B4" />
    <circle cx="0" cy="-10" r="10" fill="#FF69B4" />
    <circle cx="50" cy="0" r="10" fill="#FF69B4" />
    <circle cx="-25" cy="-25" r="10" fill="#FF69B4" />
    <circle cx="25" cy="-25" r="10" fill="#FF69B4" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image closely adheres to the prompt by depicting a surreal cactus with birdhouses as branches and birds wearing tiny hats, which captures the whimsical essence.

    The use of color and composition enhances the visual appeal, making it technically sound and creative.

    Player 2's image, while creative, diverges from the specific prompt details and does not clearly represent a cactus with birdhouses.

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
23
Player 2
33
Rectangles

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

Player 1
5
Player 2
6
Circles

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

Player 1
6
Player 2
18
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
4
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
8
Player 2
9
Groups

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

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
11

Interactivity Metrics

Animations

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

Player 1
Player 2
2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
31
Player 2
49
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
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