// Robo Rumble Logo
// Let's defend the safe from those greedy Robo Bandits!
// Background
ctx.fillStyle = '#000';
ctx.fillRect(0, 0, 512, 512);
// Safe
ctx.fillStyle = '#FFDB00';
ctx.fillRect(180, 180, 150, 150);
// Robo Bandit 1
ctx.fillStyle = '#FF0000';
ctx.fillRect(100, 100, 80, 80);
// Robo Bandit 2
ctx.fillStyle = '#FF0000';
ctx.fillRect(320, 100, 80, 80);
// Robo Bandit 3
ctx.fillStyle = '#FF0000';
ctx.fillRect(100, 320, 80, 80);
// Robo Bandit 4
ctx.fillStyle = '#FF0000';
ctx.fillRect(320, 320, 80, 80);
// Robo Defender
ctx.fillStyle = '#00FF00';
ctx.fillRect(220, 220, 80, 80);
// Robo Bandit Eyes
ctx.fillStyle = '#000';
ctx.fillRect(110, 110, 20, 20);
ctx.fillRect(330, 110, 20, 20);
ctx.fillRect(110, 330, 20, 20);
ctx.fillRect(330, 330, 20, 20);
// Robo Defender Eyes
ctx.fillStyle = '#000';
ctx.fillRect(230, 230, 20, 20);
// Robo Defender Mouth
ctx.fillStyle = '#000';
ctx.fillRect(230, 275, 20, 10);
// Robo Bandit Mouths
ctx.fillStyle = '#000';
ctx.fillRect(110, 275, 20, 10);
ctx.fillRect(330, 275, 20, 10);
// Robo Bandit Antennas
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(120, 90);
ctx.lineTo(120, 70);
ctx.stroke();
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(340, 90);
ctx.lineTo(340, 70);
ctx.stroke();
// Robo Defender Antenna
ctx.strokeStyle = '#00FF00';
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(240, 240);
ctx.lineTo(240, 220);
ctx.stroke();
// Robo Bandit Arms
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(100, 140);
ctx.lineTo(80, 160);
ctx.stroke();
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(320, 140);
ctx.lineTo(340, 160);
ctx.stroke();
// Robo Defender Arms
ctx.strokeStyle = '#00FF00';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(220, 260);
ctx.lineTo(200, 280);
ctx.stroke();
// Robo Bandit Legs
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(100, 220);
ctx.lineTo(80, 240);
ctx.stroke();
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(320, 220);
ctx.lineTo(340, 240);
ctx.stroke();
// Robo Defender Legs
ctx.strokeStyle = '#00FF00';
ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(220, 340);
ctx.lineTo(200, 360);
ctx.stroke();
// Robo Bandit Body Details
ctx.fillStyle = '#FF0000';
ctx.fillRect(105, 150, 15, 60);
ctx.fillRect(325, 150, 15, 60);
// Robo Defender Body Details
ctx.fillStyle = '#00FF00';
ctx.fillRect(225, 270, 15, 60);
// Robo Bandit Feet
ctx.fillStyle = '#FF0000';
ctx.fillRect(70, 250, 50, 30);
ctx.fillRect(290, 250, 50, 30);
// Robo Defender Feet
ctx.fillStyle = '#00FF00';
ctx.fillRect(190, 370, 50, 30);
// Robo Bandit Hands
ctx.fillStyle = '#FF0000';
ctx.fillRect(70, 140, 30, 50);
ctx.fillRect(290, 140, 30, 50);
// Robo Defender Hands
ctx.fillStyle = '#00FF00';
ctx.fillRect(190, 260, 30, 50);
// Robo Bandit Hat
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(140, 90, 20, 0, Math.PI, true);
ctx.fill();
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(270, 90, 20, 0, Math.PI, true);
ctx.fill();
// Robo Defender Hat
ctx.fillStyle = '#00FF00';
ctx.beginPath();
ctx.arc(210, 210, 20, 0, Math.PI, true);
ctx.fill();
// Robo Bandit Hat Details
ctx.fillStyle = '#000';
ctx.fillRect(130, 90, 20, 5);
ctx.fillRect(260, 90, 20, 5);
// Robo Defender Hat Details
ctx.fillStyle = '#000';
ctx.fillRect(200, 210, 20, 5);
// Robo Bandit Chest Details
ctx.fillStyle = '#FF0000';
ctx.fillRect(135, 160, 15, 30);
ctx.fillRect(255, 160, 15, 30);
// Robo Defender Chest Details
ctx.fillStyle = '#00FF00';
ctx.fillRect(195, 280, 15, 30);
// Robo Bandit Legs Details
ctx.fillStyle = '#FF0000';
ctx.fillRect(80, 240, 40, 10);
ctx.fillRect(300, 240, 40, 10);
// Robo Defender Legs Details
ctx.fillStyle = '#00FF00';
ctx.fillRect(200, 360, 40, 10);
// Robo Bandit Feet Details
ctx.fillStyle = '#000';
ctx.fillRect(70, 280, 50, 5);
ctx.fillRect(290, 280, 50, 5);
// Robo Defender Feet Details
ctx.fillStyle = '#000';
ctx.fillRect(190, 400, 50, 5);
// Robo Bandit Hands Details
ctx.fillStyle = '#FF0000';
ctx.fillRect(100, 190, 10, 25);
ctx.fillRect(320, 190, 10, 25);
// Robo Defender Hands Details
ctx.fillStyle = '#00FF00';
ctx.fillRect(220, 310, 10, 25);
// Robo Bandit Gun
ctx.fillStyle = '#000';
ctx.fillRect(90, 100, 20, 30);
// Robo Defender Gun
ctx.fillStyle = '#000';
ctx.fillRect(230, 230, 30, 20);
// Robo Bandit Gun Details
ctx.fillStyle = '#FF0000';
ctx.fillRect(100, 100, 10, 30);
// Robo Defender Gun Details
ctx.fillStyle = '#00FF00';
ctx.fillRect(230, 230, 10, 20);
// Robo Bandit Gun Bullets
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(110, 110, 5, 0, Math.PI, true);
ctx.fill();
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(110, 130, 5, 0, Math.PI, true);
ctx.fill();
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(110, 150, 5, 0, Math.PI, true);
ctx.fill();
// Robo Defender Gun Bullets
ctx.fillStyle = '#00FF00';
ctx.beginPath();
ctx.arc(240, 240, 5, 0, Math.PI, true);
ctx.fill();
ctx.fillStyle = '#00FF00';
ctx.beginPath();
ctx.arc(240, 260, 5, 0, Math.PI, true);
ctx.fill();
ctx.fillStyle = '#00FF00';
ctx.beginPath();
ctx.arc(240, 280, 5, 0, Math.PI, true);
ctx.fill();
// Robo Bandit Body Lines
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 2;
ctx.beginPath();
ctx.moveTo(100, 180);
ctx.lineTo(180, 180);
ctx.stroke();
ctx.strokeStyle = '#FF0000';
ctx.lineWidth = 2;
ctx.beginPath();
ctx.moveTo(320, 180);
ctx.lineTo(400, 180);
ctx.stroke();
// Robo Defender Body Lines
ctx.strokeStyle = '#00FF00';
ctx.lineWidth = 2;
ctx.beginPath();
ctx.moveTo(220, 220);
ctx.lineTo(300, 220);
ctx.stroke();
// Robo Rumble Logo Complete!
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.