Re: Why Does All AI Art Look Like That?

Here is a png image of the picture that I have devised for this research experiment. Yes, it is inspired by a famous painting.


https://i.postimg.cc/tsfXVg0w/face.png

77 (edited by William 2024-09-24 19:36:50)

Re: Why Does All AI Art Look Like That?

Here is my handcoded SVG file.

For a reason I do not know the $ signs all changed to # but the SVG file seems to work alright in Affinity Designer.


<svg width="400" height="600" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="400" height="600" fill="#ebebeb" />
 
  <!-- Abstract shapes -->

<ellipse cx="200" cy="300" rx="125" ry="200" fill="#ebc0c0" />

<circle cx="130" cy="260" r="20" fill="#8080eb" />

<circle cx="230" cy="260" r="20" fill="#8080eb" />

<ellipse cx="180" cy="325" rx="15" ry="35" fill="#eba0a0" />

<ellipse cx="180" cy="394" rx="35" ry="14" fill="#eb8080" />

  </svg>

Re: Why Does All AI Art Look Like That?

William wrote:

For a reason I do not know the $ signs all changed to # but the SVG file seems to work alright in Affinity Designer.

The octothorp is standard for #rrggbb triplets. Where does the dollar sign come into it?

"Has it ever struck you that life is all memory, except for the one present moment that goes by you so quick you hardly catch it going?"
― Tennessee Williams

Re: Why Does All AI Art Look Like That?

The $ sign was in the AI output.

A $ sign is often used for hexadecimal.

William

Re: Why Does All AI Art Look Like That?

I see. Thanks for the clarification!

"Has it ever struck you that life is all memory, except for the one present moment that goes by you so quick you hardly catch it going?"
― Tennessee Williams

Re: Why Does All AI Art Look Like That?

Upon checking it appears it might have been tiny characters in the display and me, knowing that a $ is often used to indicate hexadecimal, thought it was a dollar sign.

Hey ho!


https://i.postimg.cc/JydjWhdM/ai003-text.png

Re: Why Does All AI Art Look Like That?

William wrote:

Here is a png image of the picture that I have devised for this research experiment. Yes, it is inspired by a famous painting.


https://i.postimg.cc/tsfXVg0w/face.png


I am surprised that Alfred did not follow up on that! smile

William

Re: Why Does All AI Art Look Like That?

[I asked Bing Chat AI as follows.]

I want to give you the text of an SVG file. I want you to write an SVG file that includes the shapes that are in the SVG file that I give you and adds a filled circle as an earring and a filled path as a hat.

Copilot
Using
the web
Sent by Copilot:
Sure, I’d be happy to help with that! Please provide the text of the SVG file you’d like to modify. Once I have that, I’ll add a filled circle for the earring and a filled path for the hat.

[I then input the text of the SVG file.]

<svg width="400" height="600" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="400" height="600" fill="#ebebeb" />
 
  <!-- Abstract shapes -->

<ellipse cx="200" cy="300" rx="125" ry="200" fill="#ebc0c0" />

<circle cx="130" cy="260" r="20" fill="#8080eb" />

<circle cx="230" cy="260" r="20" fill="#8080eb" />

<ellipse cx="180" cy="325" rx="15" ry="35" fill="#eba0a0" />

<ellipse cx="180" cy="394" rx="35" ry="14" fill="#eb8080" />

  </svg>


[In fact, Bing Chat AI produced four colourful images with the title Abstract Shapes]





https://i.postimg.cc/3d1sQZRH/096e842e-f0f2-49c0-bca0-f56e4d355cd4.jpg





https://i.postimg.cc/m1tmx76T/17073788-1eb9-430c-9c4b-4ca5f92ce832.jpg





https://i.postimg.cc/T5Vp34s0/28ba2101-f666-433b-8848-faecb12f3ec5.jpg





https://i.postimg.cc/v1w8czWS/d4e50b84-f193-4276-983a-12fd6fb96789.jpg

Re: Why Does All AI Art Look Like That?

Those are very nice images. But I want you to write an SVG file of text as you said you would.

Copilot
Using
the web
Sent by Copilot:
Sure, I can help with that! Here’s a simple SVG file containing some text:

XML

<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
  <text x="10" y="20" font-family="Arial" font-size="16" fill="black">Hello, SVG World!</text>
</svg>
AI-generated code. Review and use carefully. More info on FAQ.
You can copy this code into a text editor and save it with a .svg extension. When you open the file in a web browser, you should see the text “Hello, SVG World!” displayed.

If you need any modifications or additional elements, just let me know!

[I extracted the SVG text and saved it in a file named ai005.svg and it worked. Here is a png of what it produced.]


https://i.postimg.cc/9rrqYprQ/ai005.png

Re: Why Does All AI Art Look Like That?

So, can a way be found for the AI to export a modified version of the SVG file with a filled circle to represent an earring and a filled path to represent a hat?

William

Re: Why Does All AI Art Look Like That?

[20:39]

[New Topic. Repeat of the prompt that resulted in the production of Abstract Portrait. What will happen this time?]

Sent by Copilot:
Sure! Here’s a simple SVG file for an original portrait orientation painting. This SVG creates a basic rectangle with a gradient fill to represent a painting:

<svg width="400" height="600" xmlns="http://www.w3.org/2000/svg">
  <rect width="100%" height="100%" fill="url(#grad1)" />
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
    </linearGradient>
  </defs>
</svg>

This SVG code creates a 400x600 pixel rectangle with a gradient from white to blue, representing a simple painting in portrait orientation. You can customize the colors, dimensions, and other elements as needed. If you have any specific details or elements you’d like to include, feel free to let me know!


https://i.postimg.cc/WFjLBYwV/ai006-edited.png

Re: Why Does All AI Art Look Like That?

I edited the text provided but only to replace the percentages with actual values, similarly to previously.

William

Re: Why Does All AI Art Look Like That?

I tried a few more attempts yesterday. It is as if the AI will do SVG files but really wants to provide four jpg images and sometimes does so even if I have requested an SVG file.

The text of the SVG file is included as provided. I edited it to change the percentage values to their absolute values, as previously.

The illustration, as with the other Abstract Portrait, is on a white surround that is not part of the SVG image as I placed the image on an A3 canvas and then made the image 3600 pixels high by2400 pixels wide, centred it, then exported a png graphic at one seventh size both horizontally and vertically.

Transcript follows

Please produce the text of an SVG file that is of an original portrait orientation painting.

Copilot
Using
the web
Sent by Copilot:
Sure! Here’s an example of an SVG file for an original portrait orientation painting. This SVG code creates a simple abstract painting with a few shapes and colors:

<svg width="400" height="600" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="100%" height="100%" fill="#f0f0f0" />
 
  <!-- Abstract shapes -->
  <circle cx="200" cy="150" r="80" fill="#ff6347" />
  <rect x="100" y="300" width="200" height="100" fill="#4682b4" />
  <polygon points="200,400 250,500 150,500" fill="#32cd32" />
 
  <!-- Text -->
  <text x="200" y="550" font-family="Verdana" font-size="24" fill="black" text-anchor="middle">
    Abstract Portrait
  </text>
</svg>

This SVG code sets up a canvas of 400x600 pixels (portrait orientation) and includes a background, a circle, a rectangle, a triangle, and some text. You can customize the shapes, colors, and text to create your own unique portrait painting. Let me know if you need any adjustments or additional elements!

Re: Why Does All AI Art Look Like That?

https://i.postimg.cc/HrGQKnXc/Abstract-Portrait-2.png

90 (edited by William 2024-09-26 13:26:40)

Re: Why Does All AI Art Look Like That?

Please produce the text of an SVG file that is of an original landscape orientation painting.
Copilot
Using
the web
Sent by Copilot:
Sure! Here’s an SVG file text for an original landscape orientation painting. This SVG depicts a simple landscape with a sun, mountains, and a river:

<svg width="800" height="400" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="800" height="400" fill="skyblue" />
 
  <!-- Sun -->
  <circle cx="700" cy="100" r="50" fill="yellow" />
 
  <!-- Mountains -->
  <polygon points="100,300 300,100 500,300" fill="darkgrey" />
  <polygon points="300,300 500,150 700,300" fill="grey" />
 
  <!-- River -->
  <path d="M 0 300 Q 200 350 400 300 T 800 300" fill="none" stroke="blue" stroke-width="5" />
 
  <!-- Grass -->
  <rect y="300" width="800" height="100" fill="green" />
</svg>

You can copy this text into an SVG file and view it in any browser or SVG viewer. Let me know if you’d like any modifications or additional elements!

Re: Why Does All AI Art Look Like That?

Here are two images, each on a white background.

The upper image is of the svg text as supplied by Bing Chat AI. The lower image is after I edited it, only swapping the order of the grass and the river.


https://i.postimg.cc/jWTvdKc3/ai008-as-supplied.png


https://i.postimg.cc/V5J9wd1L/ai008-after-editing.png

Re: Why Does All AI Art Look Like That?

William wrote:

The lower image is after I edited it, only swapping the order of the grass and the river.


https://i.postimg.cc/jWTvdKc3/ai008-as-supplied.png


https://i.postimg.cc/V5J9wd1L/ai008-after-editing.png

That’s a river? It looks like a big blue skipping rope!

"Has it ever struck you that life is all memory, except for the one present moment that goes by you so quick you hardly catch it going?"
― Tennessee Williams

Re: Why Does All AI Art Look Like That?

Possibly.

I simply used the names that Bing Chat AI stated in the SVG text.

William

Re: Why Does All AI Art Look Like That?

I find it interesting that Bing Chat AI gets much of a picture right, but does make a few mistakes.

Bing Chat AI seems to like to produce four jpg images rather than SVG text for other than very basic prompts.

William

Re: Why Does All AI Art Look Like That?

Alfred wrote:

That’s a river? It looks like a big blue skipping rope!

William wrote:

Possibly.

I simply used the names that Bing Chat AI stated in the SVG text.

William

Come now, dear sir! When did you last see a river with a portion of it hanging in mid-air?

"Has it ever struck you that life is all memory, except for the one present moment that goes by you so quick you hardly catch it going?"
― Tennessee Williams

Re: Why Does All AI Art Look Like That?

https://www.youtube.com/watch?v=rJTEMEwwdEc

Re: Why Does All AI Art Look Like That?

Severn Bore, huh? Well, that was more interesting than its title suggests! https://punster.me/images/biggrin.gif

"Has it ever struck you that life is all memory, except for the one present moment that goes by you so quick you hardly catch it going?"
― Tennessee Williams

Re: Why Does All AI Art Look Like That?

Other YouTube videos about the Severn Bore are available.

William

Re: Why Does All AI Art Look Like That?

Quite possibly off-topic here, but in the same sort of area, so here is a link.

> Girl with a Pearl Earring ‘evokes ten times more emotion than reproductions’

https://www.msn.com/en-gb/lifestyle/sty … r-AA1rOYyz

William

Re: Why Does All AI Art Look Like That?

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:

<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="100%" height="100%" fill="skyblue" />
  <!-- Ground -->
  <rect y="500" width="100%" 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, 450)">
    <!-- Boiler -->
    <rect x="50" y="-50" width="200" height="50" fill="darkred" />
    <!-- Chimney -->
    <rect x="230" y="-80" width="20" height="30" 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="150" cy="0" r="20" fill="black" />
    <circle cx="250" cy="0" r="20" fill="black" />
  </g>
  <!-- Sun -->
  <circle cx="700" cy="100" r="50" fill="yellow" />
</svg>

You can copy this code into an SVG file and view it in any browser or SVG viewer. Let me know if you need any adjustments or additional details!

https://commons.wikimedia.org/wiki/Cate … ly_replica

http://www.broadgauge.org.uk/locos/loco_firefly.html

https://en.wikipedia.org/wiki/GWR_Firefly_Class



https://i.postimg.cc/k6SXHv8Z/firefly.png