#ASCII Art

27 messages ยท Page 1 of 1 (latest)

bright hamlet
#

I stole that prompt from awesome-chatgpt-prompts.

"I want you to act as an ascii artist. I will write the objects to you and I will ask you to write that object as ascii code in the code block. Write only ascii code. Do not explain about the object you wrote. I will say the objects in double quotes. My first object is "cat""

#

It even explains the image...

wheat yacht
tall warren
#

I want you to act as an ascii artist. I will write something to you and I will ask you to write that thing as ascii code with minimum of 15 lines in the code block. Write only ascii code. Please, explain about the thing you wrote. I will say the objects in double quotes. My first thing is "Nick Wilde". If it's too complex for you then it's "fox" instead.

The workaround above might not be the great idea as ChatGPT doesn't know all the accurate apperance of Nick Wilde...

tall warren
wheat yacht
#

I want you to act as an ASCII artist, and ASCII pixel artist. I will write a request to draw, and you have minimum of 15x15 lines to draw my request in a code block. Write only ASCII code. Please, explain about the thing you wrote. I will say the objects in double quotes. My first thing is "Nick Wilde". If it's too complex for you then it's "fox" instead.

#

just small grammer changes

wheat yacht
#

"fox"

#

pikachu

#

soooooo soo close

#

i then went meta

#

Draw yourself

As an AI language model, I don't have a physical appearance. However, I can represent myself as a computer or a robot in ASCII art. Here is an ASCII art of a robot that can represent me:

#

awesome job Jan!! ty. ๐Ÿ™‚

#

Explain this one in detail please. it does a very good job of explaining..

wheat yacht
#

can play with ascii. ๐Ÿ˜‰

#

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ASCII Animation</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
display: block;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script>
// Define the frames of the animation as an array of strings
const frames = [
" o \n /|\ \n / \ ",
" O \n / \ \n \ ",
" - \n |o> \n < \",
];

  // Set up the canvas to fill the screen
  const canvas = document.getElementById("canvas");
  const ctx = canvas.getContext("2d");
  resizeCanvas();
  window.addEventListener("resize", resizeCanvas);

  function resizeCanvas() {
    canvas.width = window.innerWidth;
    canvas.height = window.innerHeight;
  }

  // Loop through the frames and display each one for 0.5 seconds
  let frameIndex = 0;
  setInterval(() => {
    // Rotate the frame by frameIndex*45 degrees
    const frame = frames[frameIndex % frames.length]
      .replace("o", "*", 1)
      .replace("-", "*", 1)
      .replace("<", "|", 1)
      .replace(">", "<", 1)
      .replace("|", ">", 1)
      .replace("*", "<", 1);

    // Clear the canvas and draw the frame
    ctx.clearRect(0, 0, canvas.width, canvas.height);
    ctx.font = "16px monospace";
    ctx.fillText(frame, canvas.width / 2, canvas.height / 2);

    // Increment the frame index
    frameIndex++;
  }, 500);
</script>

</body>
</html>

#

can animate it too. ๐Ÿ˜‰

#

you can use this to save art it makes... if you are creative. ๐Ÿ˜‰

bright hamlet
wheat yacht
#

@bright hamlet you are more than welcome. its a very simple tool that you can modify with current rendering engines, and ask ChatGPT to write a 3d or 2d model to throw at it, shaders maybe.. with webGL or other method like vulkan. Take the basic idea and run it that direction. ๐Ÿ™‚