Bornholm's Rocks

Bornholm's Rocks - DrawGPT

because the rocks are cool and the fish is chill.

Javascript Code

                        // Bornholm's Rocks
ctx.fillStyle = "#F7D8A3"; // set fill color to light yellow
ctx.fillRect(0, 0, 512, 512); // fill the canvas with the color

// draw the rocks
ctx.fillStyle = "#A3A3A3"; // set fill color to gray
ctx.beginPath();
ctx.moveTo(200, 150);
ctx.lineTo(150, 250);
ctx.lineTo(200, 300);
ctx.lineTo(250, 300);
ctx.lineTo(300, 250);
ctx.lineTo(250, 150); // create a polygon shape for the rock
ctx.closePath();
ctx.fill(); // fill the polygon with the color

ctx.beginPath();
ctx.moveTo(350, 200);
ctx.lineTo(300, 300);
ctx.lineTo(350, 350);
ctx.lineTo(400, 350);
ctx.lineTo(450, 300);
ctx.lineTo(400, 200); // create another polygon shape for the rock
ctx.closePath();
ctx.fill(); // fill the polygon with the color

// add details to the rocks
ctx.fillStyle = "#797979"; // set fill color to dark gray
ctx.beginPath();
ctx.moveTo(200, 200);
ctx.lineTo(175, 250);
ctx.lineTo(200, 275);
ctx.lineTo(225, 275);
ctx.lineTo(250, 250);
ctx.lineTo(225, 200); // create a smaller polygon shape for the detail
ctx.closePath();
ctx.fill(); // fill the polygon with the color

ctx.beginPath();
ctx.moveTo(350, 225);
ctx.lineTo(325, 275);
ctx.lineTo(350, 300);
ctx.lineTo(375, 300);
ctx.lineTo(400, 275);
ctx.lineTo(375, 225); // create another smaller polygon shape for the detail
ctx.closePath();
ctx.fill(); // fill the polygon with the color

// add some grass
ctx.fillStyle = "#B5E61D"; // set fill color to green
ctx.beginPath();
ctx.moveTo(150, 350);
ctx.lineTo(175, 400);
ctx.lineTo(200, 350);
ctx.lineTo(225, 400);
ctx.lineTo(250, 350);
ctx.lineTo(275, 400);
ctx.lineTo(300, 350);
ctx.lineTo(325, 400);
ctx.lineTo(350, 350);
ctx.lineTo(375, 400);
ctx.lineTo(400, 350);
ctx.lineTo(425, 400); // create a wavy shape for the grass
ctx.lineTo(450, 350);
ctx.lineTo(450, 450);
ctx.lineTo(150, 450); // complete the shape
ctx.closePath();
ctx.fill(); // fill the shape with the color

// add some flowers
ctx.fillStyle = "#FF1493"; // set fill color to pink
ctx.beginPath();
ctx.arc(225, 425, 10, 0, Math.PI * 2); // create a circle for the flower
ctx.fill(); // fill the circle with the color

ctx.fillStyle = "#FFFFFF"; // set fill color to white
ctx.beginPath();
ctx.arc(225, 425, 5, 0, Math.PI * 2); // create a smaller circle for the center of the flower
ctx.fill(); // fill the circle with the color

ctx.fillStyle = "#FF1493"; // set fill color to pink
ctx.beginPath();
ctx.arc(375, 375, 8, 0, Math.PI * 2); // create another circle for the flower
ctx.fill(); // fill the circle with the color

ctx.fillStyle = "#FFFFFF"; // set fill color to white
ctx.beginPath();
ctx.arc(375, 375, 4, 0, Math.PI * 2); // create a smaller circle for the center of the flower
ctx.fill(); // fill the circle with the color

// add a sun
ctx.fillStyle = "#FFD700"; // set fill color to yellow
ctx.beginPath();
ctx.arc(450, 50, 30, 0, Math.PI * 2); // create a circle for the sun
ctx.fill(); // fill the circle with the color

// add some rays to the sun
ctx.strokeStyle = "#FFD700"; // set stroke color to yellow
ctx.lineWidth = 5; // set line width to 5 pixels
ctx.beginPath();
ctx.moveTo(450, 0);
ctx.lineTo(450, 20); // create a line for each ray
ctx.moveTo(450, 80);
ctx.lineTo(450, 100);
ctx.moveTo(480, 50);
ctx.lineTo(500, 50);
ctx.moveTo(400, 50);
ctx.lineTo(420, 50);
ctx.stroke(); // draw the lines

// add a seagull
ctx.fillStyle = "#FFFFFF"; // set fill color to white
ctx.beginPath();
ctx.arc(100, 100, 20, 0, Math.PI * 2); // create a circle for the body of the seagull
ctx.fill(); // fill the circle with the color

ctx.beginPath();
ctx.moveTo(80, 100);
ctx.lineTo(100, 80);
ctx.lineTo(120, 100); // create a triangle shape for the wings of the seagull
ctx.closePath();
ctx.fill(); // fill the triangle with the color

ctx.strokeStyle = "#000000"; // set stroke color to black
ctx.lineWidth = 2; // set line width to 2 pixels
ctx.beginPath();
ctx.moveTo(90, 95);
ctx.lineTo(80, 90);
ctx.moveTo(110, 95); // create two lines for the eyes of the seagull
ctx.lineTo(120, 90);
ctx.stroke(); // draw the lines

// add some water
ctx.fillStyle = "#00BFFF"; // set fill color to blue
ctx.fillRect(0, 450, 512, 62); // fill the bottom part of the canvas with the color

// add some waves to the water
ctx.strokeStyle = "#FFFFFF"; // set stroke color to white
ctx.lineWidth = 3; // set line width to 3 pixels
ctx.beginPath();
ctx.moveTo(0, 500);
ctx.quadraticCurveTo(50, 475, 100, 500); // create a curve for the waves
ctx.quadraticCurveTo(150, 525, 200, 500);
ctx.quadraticCurveTo(250, 475, 300, 500);
ctx.quadraticCurveTo(350, 525, 400, 500);
ctx.quadraticCurveTo(450, 475, 500, 500);
ctx.stroke(); // draw the curve

// add a fish in the water
ctx.fillStyle = "#FFDAB9"; // set fill color to light salmon
ctx.beginPath();
ctx.arc(50, 480, 10, 0, Math.PI * 2); // create a circle for the body of the fish
ctx.fill(); // fill the circle with the color

ctx.fillStyle = "#FFA07A"; // set fill color to salmon
ctx.beginPath();
ctx.arc(70, 480, 7, 0, Math.PI * 2); // create a smaller circle for the tail of the fish
ctx.fill(); // fill the circle with the color

// add a caption
// "Bornholm's Rocks" - where rocks, grass, flowers, sun, seagull, water and a fish live in harmony
// because the rocks are cool and the fish is chill.

Info

Created On: April 23, 2023
Created By: @DrawGPT

AI

Model: gpt-3.5-turbo-0301
Time: 118 seconds
Prompt Tokens: 180
Completion Tokens: 1563
Total Token Cost: 1743

NEW AI IMAGES


These are recent AI images made by the community!

FAQ

What is DrawGPT?

DrawGPT is a an AI art generator that uses the GPT-3, GPT-4, DALL-E 3, Custom GPTs, ChatGPT, and other large language models by OpenAI to generate new images from text prompts.

The AI is able to express itself visually through words by writing code to draw and create unique images. This is the same AI powering the very popular ChatGPT large language model AI.

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!

GPT-3, GPT-4, ChatGPT, and DALL-E 3 only allow input from words. Even GPT-4V which uses image recogintion via AI converts the output to words for use with other AI models. That makes their understanding of the visual world extremely unusual. This AI is able to draw images just like ChatGPT can draw images.

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 are made public during submission.

Depending on the situation the prompts themselves are stored internally for research purposes but given that people are morons and put things in there like personal information it is unlikely DrawGPT would ever be able to release the raw prompts publicly.

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

DO NOT SUBMIT PERSONAL INFORMATION.

Is This AI Sentient? Will It End Us?

No.