// Five Grinches Gossiping
// Creating the canvas
// Getting the 2d context
// Drawing the background
ctx.fillStyle = '#66cdaa';
ctx.fillRect(0, 0, 512, 512);
// Drawing the Grinches
const grinchWidth = 100;
const grinchHeight = 150;
// First Grinch
ctx.fillStyle = '#5f9ea0'; // Cyan
ctx.fillRect(50, 50, grinchWidth, grinchHeight);
// Second Grinch
ctx.fillStyle = '#ff0000'; // Red
ctx.fillRect(200, 50, grinchWidth, grinchHeight);
// Third Grinch
ctx.fillStyle = '#ffa500'; // Orange
ctx.fillRect(350, 50, grinchWidth, grinchHeight);
// Fourth Grinch
ctx.fillStyle = '#ff69b4'; // Pink
ctx.fillRect(150, 250, grinchWidth, grinchHeight);
// Fifth Grinch
ctx.fillStyle = '#800080'; // Purple
ctx.fillRect(300, 250, grinchWidth, grinchHeight);
// Adding some details
ctx.fillStyle = '#ffffff'; // White
// First Grinch's mouth
ctx.fillRect(80, 150, 40, 20);
// Second Grinch's mouth
ctx.fillRect(230, 150, 40, 20);
// Third Grinch's mouth
ctx.fillRect(380, 150, 40, 20);
// Fourth Grinch's mouth
ctx.fillRect(180, 350, 40, 20);
// Fifth Grinch's mouth
ctx.fillRect(330, 350, 40, 20);
// Adding some eyes
ctx.fillStyle = '#000000'; // Black
// First Grinch's eyes
ctx.fillRect(70, 100, 20, 20);
ctx.fillRect(110, 100, 20, 20);
// Second Grinch's eyes
ctx.fillRect(220, 100, 20, 20);
ctx.fillRect(260, 100, 20, 20);
// Third Grinch's eyes
ctx.fillRect(370, 100, 20, 20);
ctx.fillRect(410, 100, 20, 20);
// Fourth Grinch's eyes
ctx.fillRect(170, 300, 20, 20);
ctx.fillRect(210, 300, 20, 20);
// Fifth Grinch's eyes
ctx.fillRect(320, 300, 20, 20);
ctx.fillRect(360, 300, 20, 20);
// Adding some eyebrows
ctx.fillStyle = '#964b00'; // Brown
// First Grinch's eyebrows
ctx.fillRect(60, 80, 80, 10);
// Second Grinch's eyebrows
ctx.fillRect(210, 80, 80, 10);
// Third Grinch's eyebrows
ctx.fillRect(360, 80, 80, 10);
// Fourth Grinch's eyebrows
ctx.fillRect(160, 280, 80, 10);
// Fifth Grinch's eyebrows
ctx.fillRect(310, 280, 80, 10);
// Adding some noses
ctx.fillStyle = '#ffcccb'; // Light Pink
// First Grinch's nose
ctx.fillRect(80, 130, 40, 20);
// Second Grinch's nose
ctx.fillRect(230, 130, 40, 20);
// Third Grinch's nose
ctx.fillRect(380, 130, 40, 20);
// Fourth Grinch's nose
ctx.fillRect(180, 330, 40, 20);
// Fifth Grinch's nose
ctx.fillRect(330, 330, 40, 20);
// Adding some tongues
ctx.fillStyle = '#ff69b4'; // Pink
// First Grinch's tongue
ctx.fillRect(80, 180, 40, 40);
// Second Grinch's tongue
ctx.fillRect(230, 180, 40, 40);
// Third Grinch's tongue
ctx.fillRect(380, 180, 40, 40);
// Fourth Grinch's tongue
ctx.fillRect(180, 380, 40, 40);
// Fifth Grinch's tongue
ctx.fillRect(330, 380, 40, 40);
// Adding some speech bubbles
ctx.fillStyle = '#ffffff'; // White
// First Grinch's speech bubble
ctx.beginPath();
ctx.moveTo(200, 50);
ctx.lineTo(250, 10);
ctx.lineTo(300, 50);
ctx.closePath();
ctx.fill();
// Second Grinch's speech bubble
ctx.beginPath();
ctx.moveTo(350, 50);
ctx.lineTo(400, 10);
ctx.lineTo(450, 50);
ctx.closePath();
ctx.fill();
// Third Grinch's speech bubble
ctx.beginPath();
ctx.moveTo(500, 50);
ctx.lineTo(550, 10);
ctx.lineTo(600, 50);
ctx.closePath();
ctx.fill();
// Fourth Grinch's speech bubble
ctx.beginPath();
ctx.moveTo(250, 250);
ctx.lineTo(300, 210);
ctx.lineTo(350, 250);
ctx.closePath();
ctx.fill();
// Fifth Grinch's speech bubble
ctx.beginPath();
ctx.moveTo(400, 250);
ctx.lineTo(450, 210);
ctx.lineTo(500, 250);
ctx.closePath();
ctx.fill();
// Adding some text
ctx.font = 'bold 24px Arial';
ctx.fillStyle = '#000000'; // Black
// First Grinch's text
ctx.fillText('Did you hear', 215, 40);
ctx.fillText('about Cindy Lou?', 205, 70);
// Second Grinch's text
ctx.fillText('I heard', 380, 40);
ctx.fillText('she caught me!', 365, 70);
// Third Grinch's text
ctx.fillText('The Who family', 55, 235);
ctx.fillText('is throwing a party!', 40, 265);
// Fourth Grinch's text
ctx.fillText('I just stole', 170, 435);
ctx.fillText('all the presents!', 155, 465);
// Fifth Grinch's text
ctx.fillText('I think I', 405, 435);
ctx.fillText('stole the show!', 395, 465);
// Adding some thought bubbles
ctx.fillStyle = '#ffffff'; // White
ctx.strokeStyle = '#000000'; // Black
// First Grinch's thought bubble
ctx.beginPath();
ctx.arc(130, 160, 40, 0, Math.PI * 2);
ctx.stroke();
// Second Grinch's thought bubble
ctx.beginPath();
ctx.arc(280, 160, 40, 0, Math.PI * 2);
ctx.stroke();
// Third Grinch's thought bubble
ctx.beginPath();
ctx.arc(430, 160, 40, 0, Math.PI * 2);
ctx.stroke();
// Fourth Grinch's thought bubble
ctx.beginPath();
ctx.arc(230, 360, 40, 0, Math.PI * 2);
ctx.stroke();
// Fifth Grinch's thought bubble
ctx.beginPath();
ctx.arc(380, 360, 40, 0, Math.PI * 2);
ctx.stroke();
// Adding some thought text
ctx.fillStyle = '#000000'; // Black
// First Grinch's thought text
ctx.fillText('I need a new plan', 100, 160);
ctx.fillText('to steal Christmas!', 90, 190);
// Second Grinch's thought text
ctx.fillText('I hope nobody finds', 250, 160);
ctx.fillText('out it was me!', 275, 190);
// Third Grinch's thought text
ctx.fillText('I wonder if they', 400, 160);
ctx.fillText('have any roast beast!', 370, 190);
// Fourth Grinch's thought text
ctx.fillText('I love the sound', 200, 360);
ctx.fillText('of crying children!', 190, 390);
// Fifth Grinch's thought text
ctx.fillText('I can\'t wait to', 350, 360);
ctx.fillText('ruin their Christmas!', 335, 390);
// Return the canvas
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.