// Monster Truck Ambulance Racecar Firetruck Policecar
// A wild mashup of emergency vehicles on wheels!
// Who knew saving lives could be so fast and furious?
ctx.fillStyle = "#000"; // Set canvas background color to black
ctx.fillRect(0, 0, 512, 512); // Fill the canvas with black
// Draw the monster truck body
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(50, 200, 400, 150); // Draw the body
// Draw the ambulance cross
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(150, 200, 10, 150); // Draw the vertical line
ctx.fillRect(50, 250, 400, 10); // Draw the horizontal line
// Draw the race car roof
ctx.fillStyle = "#00ff00"; // Set fill color to green
ctx.fillRect(180, 100, 250, 100); // Draw the roof
// Draw the fire truck ladder
ctx.fillStyle = "#ffff00"; // Set fill color to yellow
ctx.fillRect(50, 100, 30, 200); // Draw the ladder
// Draw the police car roof lights
ctx.fillStyle = "#0000ff"; // Set fill color to blue
ctx.fillRect(150, 100, 30, 30); // Draw the left light
ctx.fillRect(220, 100, 30, 30); // Draw the right light
// Draw the monster truck wheels
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.beginPath(); // Begin drawing the wheels
ctx.arc(80, 350, 40, 0, 2 * Math.PI); // Draw the left wheel
ctx.arc(430, 350, 40, 0, 2 * Math.PI); // Draw the right wheel
ctx.fill(); // Fill the wheels
// Draw the race car spoiler
ctx.fillStyle = "#ff00ff"; // Set fill color to pink
ctx.fillRect(400, 100, 50, 20); // Draw the spoiler
// Draw the fire truck water cannon
ctx.fillStyle = "#ff9900"; // Set fill color to orange
ctx.fillRect(80, 50, 30, 50); // Draw the water cannon
// Draw the police car siren
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.beginPath(); // Begin drawing the siren
ctx.arc(200, 125, 20, 0, 2 * Math.PI); // Draw the siren
ctx.fill(); // Fill the siren
// Draw the monster truck exhaust pipes
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(60, 260, 20, 40); // Draw the left exhaust pipe
ctx.fillRect(420, 260, 20, 40); // Draw the right exhaust pipe
// Draw the race car spoiler wing
ctx.fillStyle = "#ff00ff"; // Set fill color to pink
ctx.beginPath(); // Begin drawing the wing
ctx.moveTo(450, 200); // Move to the top of the wing
ctx.lineTo(500, 200); // Draw the top line
ctx.lineTo(475, 250); // Draw the diagonal line
ctx.fill(); // Fill the wing
// Draw the fire truck hose
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(80, 250, 30, 10); // Draw the hose
// Draw the police car stripes
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(150, 150, 200, 10); // Draw the top stripe
ctx.fillRect(150, 170, 200, 10); // Draw the bottom stripe
// Draw the race car spoiler wing sides
ctx.fillStyle = "#ff00ff"; // Set fill color to pink
ctx.fillRect(400, 100, 20, 20); // Draw the left side
ctx.fillRect(430, 100, 20, 20); // Draw the right side
// Draw the fire truck ladder rungs
ctx.fillStyle = "#ffff00"; // Set fill color to yellow
ctx.fillRect(50, 120, 10, 20); // Draw the top rung
ctx.fillRect(50, 160, 10, 20); // Draw the middle rung
ctx.fillRect(50, 200, 10, 20); // Draw the bottom rung
// Draw the police car wheels
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.beginPath(); // Begin drawing the wheels
ctx.arc(180, 350, 40, 0, 2 * Math.PI); // Draw the left wheel
ctx.arc(350, 350, 40, 0, 2 * Math.PI); // Draw the right wheel
ctx.fill(); // Fill the wheels
// Draw the monster truck headlights
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.beginPath(); // Begin drawing the headlights
ctx.arc(120, 250, 10, 0, 2 * Math.PI); // Draw the left headlight
ctx.arc(390, 250, 10, 0, 2 * Math.PI); // Draw the right headlight
ctx.fill(); // Fill the headlights
// Draw the race car wheels
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.beginPath(); // Begin drawing the wheels
ctx.arc(430, 200, 30, 0, 2 * Math.PI); // Draw the top right wheel
ctx.arc(480, 200, 30, 0, 2 * Math.PI); // Draw the top left wheel
ctx.arc(480, 230, 30, 0, 2 * Math.PI); // Draw the bottom left wheel
ctx.arc(430, 230, 30, 0, 2 * Math.PI); // Draw the bottom right wheel
ctx.fill(); // Fill the wheels
// Draw the fire truck wheels
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.beginPath(); // Begin drawing the wheels
ctx.arc(80, 300, 30, 0, 2 * Math.PI); // Draw the top left wheel
ctx.arc(130, 300, 30, 0, 2 * Math.PI); // Draw the top right wheel
ctx.arc(130, 330, 30, 0, 2 * Math.PI); // Draw the bottom right wheel
ctx.arc(80, 330, 30, 0, 2 * Math.PI); // Draw the bottom left wheel
ctx.fill(); // Fill the wheels
// Draw the police car wheels
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.beginPath(); // Begin drawing the wheels
ctx.arc(180, 400, 30, 0, 2 * Math.PI); // Draw the top left wheel
ctx.arc(250, 400, 30, 0, 2 * Math.PI); // Draw the top right wheel
ctx.arc(250, 430, 30, 0, 2 * Math.PI); // Draw the bottom right wheel
ctx.arc(180, 430, 30, 0, 2 * Math.PI); // Draw the bottom left wheel
ctx.fill(); // Fill the wheels
// Draw the monster truck windows
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(100, 210, 100, 100); // Draw the left window
ctx.fillRect(300, 210, 100, 100); // Draw the right window
// Draw the ambulance cross
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(180, 200, 10, 150); // Draw the vertical line
ctx.fillRect(50, 275, 400, 10); // Draw the horizontal line
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(50, 100, 10, 30); // Draw the handle
// Draw the police car roof lights
ctx.fillStyle = "#ff0000"; // Set fill color to red
ctx.fillRect(170, 100, 30, 30); // Draw the left light
ctx.fillRect(240, 100, 30, 30); // Draw the right light
// Draw the monster truck grille
ctx.fillStyle = "#808080"; // Set fill color to gray
ctx.fillRect(125, 250, 50, 20); // Draw the grille
// Draw the race car windshield
ctx.fillStyle = "#ffffff"; // Set fill color to white
ctx.fillRect(400, 100, 10, 100); // Draw the left line
ctx.fillRect(450, 100, 10, 100); // Draw the right line
// Draw the fire truck water cannon handle
ctx.fillStyle = "#808080"; // Set
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.