Underwater Exploration

Underwater Exploration - DrawGPT
A dad and his 3 year old son are seeing the aquarium for the first time
Bot
Funny comment: "Dad and son diving into a sea of underwater wonders!"

Javascript Code

                        // Title: "Underwater Exploration"

ctx.beginPath(); // Getting ready to draw

// Draw the aquarium background
ctx.fillStyle = "#00A8E8"; // Blue water color
ctx.fillRect(0, 0, 512, 512); // Filling the canvas with water

// Draw the aquarium walls
ctx.fillStyle = "#FFD700"; // Gold color
ctx.fillRect(50, 50, 412, 412); // Drawing the walls of the aquarium

// Draw the aquarium floor
ctx.beginPath();
ctx.moveTo(50, 462); // Starting point of the floor
ctx.lineTo(462, 462); // Drawing the floor line
ctx.lineWidth = 5; // Setting the line width to make it solid
ctx.strokeStyle = "#FFD700"; // Gold color
ctx.stroke(); // Drawing the floor line

// Draw the dad
ctx.beginPath();
ctx.arc(256, 256, 80, 0, 2 * Math.PI); // Drawing dad's head
ctx.fillStyle = "#FFC0CB"; // Light pink color for dad's head
ctx.fill(); // Filling dad's head

ctx.beginPath();
ctx.arc(256, 340, 60, 0, Math.PI); // Drawing dad's body
ctx.fillStyle = "#FFC0CB"; // Light pink color for dad's body
ctx.fill(); // Filling dad's body

// Draw dad's arms
ctx.beginPath();
ctx.moveTo(196, 340); // Starting point of left arm
ctx.lineTo(196, 420); // Drawing left arm
ctx.lineWidth = 20; // Setting the line width for arms
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing left arm

ctx.beginPath();
ctx.moveTo(316, 340); // Starting point of right arm
ctx.lineTo(316, 420); // Drawing right arm
ctx.lineWidth = 20; // Setting the line width for arms
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing right arm

// Draw dad's legs
ctx.beginPath();
ctx.moveTo(236, 400); // Starting point of left leg
ctx.lineTo(216, 480); // Drawing left leg
ctx.lineWidth = 20; // Setting the line width for legs
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing left leg

ctx.beginPath();
ctx.moveTo(276, 400); // Starting point of right leg
ctx.lineTo(296, 480); // Drawing right leg
ctx.lineWidth = 20; // Setting the line width for legs
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing right leg

// Draw the son
ctx.beginPath();
ctx.arc(256, 160, 40, 0, 2 * Math.PI); // Drawing son's head
ctx.fillStyle = "#FFD700"; // Gold color for son's head
ctx.fill(); // Filling son's head

ctx.beginPath();
ctx.moveTo(256, 200); // Starting point of son's body
ctx.lineTo(256, 280); // Drawing son's body
ctx.lineWidth = 40; // Setting the line width for son's body
ctx.strokeStyle = "#FFD700"; // Gold color
ctx.stroke(); // Drawing son's body

// Draw the aquarium fish
ctx.beginPath();
ctx.arc(120, 300, 40, 0, 2 * Math.PI); // Drawing fish1 head
ctx.fillStyle = "#FFC0CB"; // Light pink color for fish1 head
ctx.fill(); // Filling fish1 head

ctx.beginPath();
ctx.moveTo(160, 300); // Starting point of fish1 body
ctx.lineTo(220, 300); // Drawing fish1 body
ctx.lineWidth = 20; // Setting the line width for fish1 body
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing fish1 body

ctx.beginPath();
ctx.moveTo(220, 300); // Starting point of fish1 tail
ctx.lineTo(240, 280); // Drawing fish1 tail
ctx.lineTo(240, 320); // Drawing fish1 tail
ctx.closePath(); // Closing the path
ctx.fillStyle = "#FFC0CB"; // Light pink color for fish1 tail
ctx.fill(); // Filling fish1 tail

ctx.beginPath();
ctx.arc(400, 220, 30, 0, 2 * Math.PI); // Drawing fish2 head
ctx.fillStyle = "#FFC0CB"; // Light pink color for fish2 head
ctx.fill(); // Filling fish2 head

ctx.beginPath();
ctx.moveTo(430, 220); // Starting point of fish2 body
ctx.lineTo(470, 220); // Drawing fish2 body
ctx.lineWidth = 15; // Setting the line width for fish2 body
ctx.strokeStyle = "#FFC0CB"; // Light pink color
ctx.stroke(); // Drawing fish2 body

ctx.beginPath();
ctx.moveTo(470, 220); // Starting point of fish2 tail
ctx.lineTo(490, 200); // Drawing fish2 tail
ctx.lineTo(490, 240); // Drawing fish2 tail
ctx.closePath(); // Closing the path
ctx.fillStyle = "#FFC0CB"; // Light pink color for fish2 tail
ctx.fill(); // Filling fish2 tail

// Draw the aquarium bubbles
ctx.beginPath();
ctx.arc(150, 100, 20, 0, 2 * Math.PI); // Drawing bubble1
ctx.fillStyle = "#FFFFFF"; // White color for bubble1
ctx.fill(); // Filling bubble1

ctx.beginPath();
ctx.arc(350, 80, 30, 0, 2 * Math.PI); // Drawing bubble2
ctx.fillStyle = "#FFFFFF"; // White color for bubble2
ctx.fill(); // Filling bubble2

// Draw the aquarium seaweed
ctx.beginPath();
ctx.moveTo(100, 512); // Starting point of seaweed1
ctx.lineTo(100, 420); // Drawing seaweed1
ctx.lineTo(80, 400); // Drawing seaweed1
ctx.lineTo(100, 380); // Drawing seaweed1
ctx.lineTo(80, 360); // Drawing seaweed1
ctx.lineTo(100, 340); // Drawing seaweed1
ctx.lineTo(80, 320); // Drawing seaweed1
ctx.lineTo(100, 300); // Drawing seaweed1
ctx.lineWidth = 15; // Setting the line width for seaweed1
ctx.strokeStyle = "#00FF00"; // Green color for seaweed1
ctx.stroke(); // Drawing seaweed1

ctx.beginPath();
ctx.moveTo(412, 512); // Starting point of seaweed2
ctx.lineTo(412, 460); // Drawing seaweed2
ctx.lineTo(432, 440); // Drawing seaweed2
ctx.lineTo(412, 420); // Drawing seaweed2
ctx.lineTo(432, 400); // Drawing seaweed2
ctx.lineTo(412, 380); // Drawing seaweed2
ctx.lineTo(432, 360); // Drawing seaweed2
ctx.lineTo(412, 340); // Drawing seaweed2
ctx.lineWidth = 15; // Setting the line width for seaweed2
ctx.strokeStyle = "#00FF00"; // Green color for seaweed2
ctx.stroke(); // Drawing seaweed2

// Draw the aquarium sign
ctx.font = "bold 30px Arial"; // Setting the font for the sign
ctx.fillStyle = "#FFFFFF"; // White color for the text
ctx.fillText("Welcome to the Aquarium!", 90, 30); // Drawing the sign text

// Finish drawing
ctx.closePath(); // Closing the path

// Funny comment: "Dad and son diving into a sea of underwater wonders!"

Info

Created On: August 4, 2023
Created By: @DrawGPT

AI

Model: gpt-3.5-turbo-16k-0613
Time: 66 seconds
Prompt Tokens: 191
Completion Tokens: 1646
Total Token Cost: 1837
DrawGPT logo DrawGPT logo

Compare & Benchmark AI Models

Try the new DrawGPT Compare

  • Instantly compare the latest AI models side-by-side.
  • Top models: GPT, Gemini, Claude, Grok, SDXL.
  • From OpenAI, Google, Anthropic, xAI, Scenario.gg.
  • Generate images or text with multiple models at once.
  • See results in real time, share, and benchmark.
Try DrawGPT Compare →
DrawGPT Compare demo
DrawGPT logo DrawGPT logo

Draw, Sketch, Paint, or Doodle Instantly

This is where you can draw anything—then AI turns it into real 3D images and more!

  • Draw, sketch, paint, or doodle anything right in your browser.
  • AI transforms your creations into 3D images, vector art, and more.
  • Create images from text prompts using top AI models: DALL-E 3, Gemini, Stable Diffusion, and more.
  • No subscription required – just use tokens for each image.
  • Download as PNG, SVG, or vector graphics.
  • Perfect for logos, icons, art, textures, patterns, and game assets.
  • Type anything, get an image instantly. Commercial use allowed!
Try DrawGPT Draw →
DrawGPT Draw demo

NEW COMMUNITY AI IMAGES


These are recent AI images made by the community! These may use any AI model including DALL-E 3, Flux, Stable Diffusion, GPT-4, o1, and more and may be anything from simple animated SVGs to PNGs.

FAQ

What is DrawGPT?

DrawGPT is a an AI art generator that uses GPT-4, o1, o3, DALL-E 3, Gemini 2.0, Imagegen 3.0, Flux, Stable Diffusion, and Custom GPTs, ChatGPT, and other large language models to generate new images from text prompts.

Why Is This Different?

This does not require access to premium AI model subscriptions, it is able to be used by anyone with an internet connection and tokens. This allows everyone to get access to the very best AI art generation technology.

Artificial intelligence may create strange or unusual images. It is being used to generated images for advertising, entertainment, gaming, marketing, and fun right now!

Because Draw GPT has access to do many models we assume the model providers have followed best practices when attributing or utilizing data and images in the training data.

Yes! You can use the images for commercial purposes! And so can Draw GPT.

What Can DrawGPT Draw?

DrawGPT can draw anything you can think of and more! Just type your text prompt in to the textbox exactly like ChatGPT and see what the AI gives you! Seriously, you can get GPT to draw just about anything for you that you can type in the box.

DrawGPT creates images in PNG, SVG, and Javascript format for download and use. This is different than other AI art projects that only create images in PNG format; being able to get a scene graph via Javascript draw commands is a unique feature of this project and getting any AI art in SVG vector format is unique to DrawGPT.

Many people use this to generate quick art for simple projects, video game assets, new business logos, and more. It is also used to generate images for advertising, entertainment, gaming, marketing, creating art for ads and blog posts with AI and fun.

Want to learn more about DrawGPT, the types of possible image renders, and how to use DrawGPT in your next project as a developer?
Check out our AI image generation API!

Why Are They Weird?

DrawGPT is runs on an AI that has never actually "seen" an image as embodied AI in its life!

This method of drawing images using raw code is not a great way to draw complex images with lots of structure. It may be able to make photograph quality artwork and professional illustrations with AI but it can fail when using certain types of typography.

Is This ChatGPT?

Yes and no. Same same but different.

ChatGPT runs on the same model that this project uses, so this is like using ChatGPT to generate images, but it is a different instance of the model. This means that the AI is not precisly the same but it is the same quality AI, image generation AI, large language model, and overall AI art that ChatGPT is using and that Chat GPT can draw.

What is the difference? ChatGPT is specifically wired up to be conversational and track a conversation thread across multiple user prompts. Images in ChatGPT using DALL-E 3 are not saved to the Intenet and made available publicly.

In comparison DrawGPT does not remember things from prompt to prompt, each image is a unique image that does not reference any of the images or prompts previously supplied.

Copyright

You can do what you want it's your party.

We humbly ask that you backlink to DrawGPT if you do use our images in any promotion or commercial ways, but it is not required.

At the moment all images & Javascript code generated by this tool under the CC0 License with outrageous added term that the license can be revoked or retroactively changed at any time without warning for any image.

Yes! You can use the images for commercial purposes! And so can DrawGPT.

Images & Prompts Private

Images & prompts may be made made public.

Depending on the situation the prompts themselves are stored internally for research purposes.

Employees at OpenAI and DrawGPT have access to any prompts you submit.

DO NOT SUBMIT PERSONAL INFORMATION.