Re: Why Does All AI Art Look Like That?

William wrote:

Please produce an svg text file of a landscape showing the broad gauge locomotive Firefly.

Sent by Copilot:
Sure, I can help with that! Here’s an SVG text file depicting a landscape with the broad gauge locomotive Firefly:

{snip}

I don’t see any fire, but that locomotive does look as though it’s able to fly!

"I am ignorant of absolute truth. But I am humble before my ignorance, and therein lies my honour and my reward.”
— Kahlil Gibran

Re: Why Does All AI Art Look Like That?

I find it interesting that the AI got it partly correct.

William

Re: Why Does All AI Art Look Like That?

William wrote:

I find it interesting that the AI got it partly correct.

William

That’s pretty much par for the course, isn’t it?

"I am ignorant of absolute truth. But I am humble before my ignorance, and therein lies my honour and my reward.”
— Kahlil Gibran

Re: Why Does All AI Art Look Like That?

Indeed, yes!

I am thinking at trying to produce a derivate work but within what I think are reasonable limits based on what the AI has supplied.

Specifically, to lower the locomotive onto the track, to make the middle wheel larger, and possibly to add in a copy of the image of a tree from an earlier AI generated picture that is in this thread.

William

Re: Why Does All AI Art Look Like That?

I have had a go at that, I hope to post the picture in the next post.

William

Re: Why Does All AI Art Look Like That?

https://i.postimg.cc/87CKnxVy/firefly-derivative.png

Re: Why Does All AI Art Look Like That?

Here is the text of the svg file.

<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="800" height="600" fill="skyblue" />
  <!-- Ground -->
  <rect y="500" width="800" height="100" fill="green" />
  <!-- Tracks -->
  <line x1="0" y1="520" x2="800" y2="520" stroke="black" stroke-width="5" />
  <line x1="0" y1="540" x2="800" y2="540" stroke="black" stroke-width="5" />
  <!-- Locomotive Firefly -->
  <g transform="translate(100, 520)">
    <!-- Boiler -->
    <rect x="50" y="-50" width="200" height="50" fill="darkred" />
    <!-- Chimney -->
    <rect x="230" y="-150" width="20" height="100" fill="black" />
    <!-- Cab -->
    <rect x="0" y="-50" width="50" height="50" fill="darkred" />
    <!-- Wheels -->
    <circle cx="50" cy="0" r="20" fill="black" />
    <circle cx="130" cy="-30" r="50" fill="black" />
    <circle cx="210" cy="0" r="20" fill="black" />
  </g>
  <!-- Sun -->
  <circle cx="700" cy="100" r="50" fill="yellow" />
</svg>