// Title: Cedar Fire
// Creating a canvas
// Getting the 2D context
// Drawing the Cedar Fire
ctx.fillStyle = '#FF4500'; // Setting the fill color to fiery orange
ctx.fillRect(0, 0, 512, 512); // Filling the canvas with fiery color
// Drawing the flames
ctx.beginPath();
ctx.moveTo(256, 512); // Starting from the bottom center
ctx.lineTo(128, 256); // Drawing a line to the left
ctx.lineTo(384, 256); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#FFD700'; // Setting the fill color to golden yellow
ctx.fill(); // Filling the flame shape
// Adding some sparks
ctx.beginPath();
ctx.arc(256, 256, 10, 0, Math.PI * 2); // Drawing a circular spark in the center
ctx.fillStyle = '#FFFF00'; // Setting the fill color to bright yellow
ctx.fill(); // Filling the spark shape
ctx.beginPath();
ctx.arc(200, 200, 5, 0, Math.PI * 2); // Drawing a smaller spark on the left
ctx.fillStyle = '#FFFF00'; // Setting the fill color to bright yellow
ctx.fill(); // Filling the spark shape
ctx.beginPath();
ctx.arc(312, 200, 5, 0, Math.PI * 2); // Drawing a smaller spark on the right
ctx.fillStyle = '#FFFF00'; // Setting the fill color to bright yellow
ctx.fill(); // Filling the spark shape
// Adding some smoke
ctx.beginPath();
ctx.moveTo(256, 100); // Starting from the top center
ctx.lineTo(200, 50); // Drawing a line to the left
ctx.lineTo(312, 50); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#D3D3D3'; // Setting the fill color to light gray
ctx.fill(); // Filling the smoke shape
// Adding more smoke
ctx.beginPath();
ctx.moveTo(256, 50); // Starting from the top center
ctx.lineTo(150, 20); // Drawing a line to the left
ctx.lineTo(362, 20); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#D3D3D3'; // Setting the fill color to light gray
ctx.fill(); // Filling the smoke shape
// Adding even more smoke
ctx.beginPath();
ctx.moveTo(256, 20); // Starting from the top center
ctx.lineTo(100, 5); // Drawing a line to the left
ctx.lineTo(412, 5); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#D3D3D3'; // Setting the fill color to light gray
ctx.fill(); // Filling the smoke shape
// Adding a touch of nature
ctx.beginPath();
ctx.arc(450, 462, 50, 0, Math.PI * 2); // Drawing a circular tree
ctx.fillStyle = '#228B22'; // Setting the fill color to forest green
ctx.fill(); // Filling the tree shape
// Adding some branches
ctx.beginPath();
ctx.moveTo(450, 462); // Starting from the center of the tree
ctx.lineTo(400, 400); // Drawing a branch to the left
ctx.lineTo(500, 400); // Drawing a branch to the right
ctx.closePath();
ctx.fillStyle = '#228B22'; // Setting the fill color to forest green
ctx.fill(); // Filling the branch shape
// Adding some leaves
ctx.beginPath();
ctx.arc(400, 400, 30, 0, Math.PI * 2); // Drawing a circular leaf on the left branch
ctx.fillStyle = '#008000'; // Setting the fill color to dark green
ctx.fill(); // Filling the leaf shape
ctx.beginPath();
ctx.arc(500, 400, 30, 0, Math.PI * 2); // Drawing a circular leaf on the right branch
ctx.fillStyle = '#008000'; // Setting the fill color to dark green
ctx.fill(); // Filling the leaf shape
// Adding a cute squirrel
ctx.beginPath();
ctx.arc(300, 462, 20, 0, Math.PI * 2); // Drawing a circular body for the squirrel
ctx.fillStyle = '#8B4513'; // Setting the fill color to brown
ctx.fill(); // Filling the body shape
ctx.beginPath();
ctx.arc(290, 452, 5, 0, Math.PI * 2); // Drawing a circular head for the squirrel
ctx.fillStyle = '#8B4513'; // Setting the fill color to brown
ctx.fill(); // Filling the head shape
ctx.beginPath();
ctx.arc(310, 452, 5, 0, Math.PI * 2); // Drawing a circular head for the squirrel
ctx.fillStyle = '#8B4513'; // Setting the fill color to brown
ctx.fill(); // Filling the head shape
ctx.beginPath();
ctx.arc(300, 447, 3, 0, Math.PI * 2); // Drawing a circular eye on the left
ctx.fillStyle = '#000'; // Setting the fill color to black
ctx.fill(); // Filling the eye shape
ctx.beginPath();
ctx.arc(300, 457, 3, 0, Math.PI * 2); // Drawing a circular eye on the right
ctx.fillStyle = '#000'; // Setting the fill color to black
ctx.fill(); // Filling the eye shape
ctx.beginPath();
ctx.moveTo(285, 470); // Starting from the bottom left of the squirrel
ctx.lineTo(315, 470); // Drawing a line to the bottom right
ctx.lineTo(300, 480); // Drawing a line to the top
ctx.closePath();
ctx.fillStyle = '#8B4513'; // Setting the fill color to brown
ctx.fill(); // Filling the tail shape
// Adding some squirrel cheeks
ctx.beginPath();
ctx.arc(295, 455, 3, 0, Math.PI * 2); // Drawing a circular cheek on the left
ctx.fillStyle = '#FF69B4'; // Setting the fill color to pink
ctx.fill(); // Filling the cheek shape
ctx.beginPath();
ctx.arc(305, 455, 3, 0, Math.PI * 2); // Drawing a circular cheek on the right
ctx.fillStyle = '#FF69B4'; // Setting the fill color to pink
ctx.fill(); // Filling the cheek shape
// Adding a happy sun
ctx.beginPath();
ctx.arc(462, 50, 40, 0, Math.PI * 2); // Drawing a circular sun
ctx.fillStyle = '#FFD700'; // Setting the fill color to golden yellow
ctx.fill(); // Filling the sun shape
ctx.beginPath();
ctx.moveTo(442, 50); // Starting from the top left of the sun
ctx.lineTo(482, 50); // Drawing a line to the top right
ctx.lineTo(462, 10); // Drawing a line to the bottom
ctx.closePath();
ctx.fillStyle = '#FFD700'; // Setting the fill color to golden yellow
ctx.fill(); // Filling the sun rays shape
// Adding some birds
ctx.beginPath();
ctx.moveTo(50, 50); // Starting from the top left
ctx.lineTo(70, 70); // Drawing a line to the bottom right
ctx.lineTo(30, 70); // Drawing a line to the bottom left
ctx.closePath();
ctx.fillStyle = '#000'; // Setting the fill color to black
ctx.fill(); // Filling the bird shape
ctx.beginPath();
ctx.moveTo(80, 70); // Starting from the bottom left
ctx.lineTo(100, 50); // Drawing a line to the top right
ctx.lineTo(60, 50); // Drawing a line to the top left
ctx.closePath();
ctx.fillStyle = '#000'; // Setting the fill color to black
ctx.fill(); // Filling the bird shape
// Oops, I almost forgot the fire extinguisher!
ctx.beginPath();
ctx.arc(462, 462, 25, 0, Math.PI * 2); // Drawing a circular base for the extinguisher
ctx.fillStyle = '#808080'; // Setting the fill color to gray
ctx.fill(); // Filling the base shape
ctx.beginPath();
ctx.moveTo(462, 437); // Starting from the top center of the base
ctx.lineTo(437, 412); // Drawing a line to the left
ctx.lineTo(487, 412); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#808080'; // Setting the fill color to gray
ctx.fill(); // Filling the handle shape
ctx.beginPath();
ctx.moveTo(462, 412); // Starting from the top center of the base
ctx.lineTo(437, 387); // Drawing a line to the left
ctx.lineTo(487, 387); // Drawing a line to the right
ctx.closePath();
ctx.fillStyle = '#808080'; // Setting the fill color to gray
ctx.fill(); // Filling the nozzle shape
// Phew! That should do it, the Cedar Fire is under control now!
// We hope our little squirrel friend finds a new home soon!
// The birds are probably enjoying the warm glow of the flames.
// Remember, fire safety is important, but we can still appreciate the beauty of nature!
// Stay safe and have a great day!
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.
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.
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.
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!
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.
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.
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 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.