// Korean Family
// Draw the background
ctx.fillStyle = 'lightblue';
ctx.fillRect(0, 0, 512, 512);
// Draw the dad
ctx.fillStyle = 'darkblue';
ctx.fillRect(200, 100, 100, 150);
// Draw the mom
ctx.fillStyle = 'pink';
ctx.fillRect(100, 100, 100, 150);
// Draw the son
ctx.fillStyle = 'orange';
ctx.fillRect(325, 100, 75, 125);
// Draw the daughter
ctx.fillStyle = 'purple';
ctx.fillRect(400, 100, 75, 125);
// Draw the baby
ctx.fillStyle = 'lightpink';
ctx.fillRect(250, 275, 50, 75);
// Draw the grandparents
ctx.fillStyle = 'gray';
ctx.fillRect(50, 50, 100, 75);
ctx.fillRect(350, 50, 100, 75);
// Draw their smiles
ctx.beginPath();
ctx.arc(250, 200, 50, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
// Draw their eyes
ctx.beginPath();
ctx.arc(230, 180, 10, 0, Math.PI * 2);
ctx.arc(270, 180, 10, 0, Math.PI * 2);
ctx.fillStyle = 'black';
ctx.fill();
// Draw their cute little noses
ctx.beginPath();
ctx.moveTo(250, 190);
ctx.lineTo(240, 210);
ctx.lineTo(260, 210);
ctx.closePath();
ctx.fillStyle = 'pink';
ctx.fill();
// Draw their happy eyebrows
ctx.beginPath();
ctx.moveTo(220, 160);
ctx.lineTo(240, 170);
ctx.lineTo(260, 170);
ctx.lineTo(280, 160);
ctx.lineWidth = 2;
ctx.strokeStyle = 'black';
ctx.stroke();
// Draw their ears
ctx.beginPath();
ctx.ellipse(80, 150, 20, 30, Math.PI / 4, 0, Math.PI * 2);
ctx.ellipse(420, 150, 20, 30, Math.PI / 4, 0, Math.PI * 2);
ctx.fillStyle = 'lightgray';
ctx.fill();
// Draw their hair
ctx.beginPath();
ctx.moveTo(150, 50);
ctx.lineTo(250, 50);
ctx.lineTo(250, 100);
ctx.lineTo(350, 100);
ctx.lineTo(350, 50);
ctx.lineTo(450, 50);
ctx.lineTo(450, 150);
ctx.lineTo(50, 150);
ctx.lineTo(50, 50);
ctx.closePath();
ctx.fillStyle = 'black';
ctx.fill();
// Draw their clothes
ctx.fillStyle = 'cyan';
ctx.fillRect(200, 250, 100, 100);
ctx.fillRect(100, 250, 100, 100);
ctx.fillRect(325, 225, 75, 75);
ctx.fillRect(400, 225, 75, 75);
// Draw their hands
ctx.fillStyle = 'lightgray';
ctx.fillRect(200, 350, 25, 25);
ctx.fillRect(275, 350, 25, 25);
ctx.fillRect(100, 350, 25, 25);
ctx.fillRect(175, 350, 25, 25);
ctx.fillRect(325, 325, 25, 25);
ctx.fillRect(400, 325, 25, 25);
// Draw their funny feet
ctx.fillStyle = 'black';
ctx.fillRect(225, 400, 25, 25);
ctx.fillRect(300, 400, 25, 25);
ctx.fillRect(125, 400, 25, 25);
ctx.fillRect(200, 400, 25, 25);
ctx.fillRect(325, 375, 25, 25);
ctx.fillRect(400, 375, 25, 25);
// Draw their cool glasses
ctx.beginPath();
ctx.arc(230, 180, 30, Math.PI / 2, Math.PI * 1.5);
ctx.arc(270, 180, 30, Math.PI / 2, Math.PI * 1.5);
ctx.lineWidth = 5;
ctx.strokeStyle = 'black';
ctx.stroke();
// Draw the Korean flag on their clothes
ctx.beginPath();
ctx.arc(250, 300, 20, 0, Math.PI * 2);
ctx.fillStyle = 'white';
ctx.fill();
ctx.beginPath();
ctx.arc(250, 300, 15, 0, Math.PI * 2);
ctx.fillStyle = 'red';
ctx.fill();
ctx.beginPath();
ctx.moveTo(250, 285);
ctx.lineTo(250, 315);
ctx.lineWidth = 3;
ctx.strokeStyle = 'blue';
ctx.stroke();
ctx.beginPath();
ctx.moveTo(235, 300);
ctx.lineTo(265, 300);
ctx.lineWidth = 3;
ctx.strokeStyle = 'blue';
ctx.stroke();
// Fun fact: Korean families often gather together to eat delicious food!
// Draw their yummy dinner
ctx.beginPath();
ctx.moveTo(100, 450);
ctx.lineTo(200, 375);
ctx.lineTo(300, 375);
ctx.lineTo(400, 450);
ctx.closePath();
ctx.fillStyle = 'brown';
ctx.fill();
// Draw their chopsticks
ctx.beginPath();
ctx.moveTo(200, 375);
ctx.lineTo(200, 425);
ctx.lineWidth = 3;
ctx.strokeStyle = 'black';
ctx.stroke();
ctx.beginPath();
ctx.moveTo(300, 375);
ctx.lineTo(300, 425);
ctx.stroke();
// Draw their food
ctx.beginPath();
ctx.arc(200, 400, 15, 0, Math.PI * 2);
ctx.fillStyle = 'green';
ctx.fill();
ctx.beginPath();
ctx.arc(225, 425, 15, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(275, 425, 15, 0, Math.PI * 2);
ctx.fillStyle = 'orange';
ctx.fill();
ctx.beginPath();
ctx.arc(300, 400, 15, 0, Math.PI * 2);
ctx.fillStyle = 'red';
ctx.fill();
// Fun fact: Korean families are known for their love and strong bonds!
// Draw some hearts to represent their love
ctx.beginPath();
ctx.moveTo(150, 200);
ctx.bezierCurveTo(150, 150, 250, 150, 250, 200);
ctx.bezierCurveTo(250, 250, 150, 250, 150, 200);
ctx.closePath();
ctx.fillStyle = 'red';
ctx.fill();
ctx.beginPath();
ctx.moveTo(350, 200);
ctx.bezierCurveTo(350, 150, 450, 150, 450, 200);
ctx.bezierCurveTo(450, 250, 350, 250, 350, 200);
ctx.closePath();
ctx.fill();
// Fun fact: Korean families often enjoy traditional music and dance together!
// Draw a traditional Korean dancer
ctx.beginPath();
ctx.moveTo(150, 400);
ctx.lineTo(175, 375);
ctx.lineTo(200, 400);
ctx.lineTo(225, 375);
ctx.lineTo(250, 400);
ctx.lineTo(275, 375);
ctx.lineTo(300, 400);
ctx.lineTo(325, 375);
ctx.lineTo(350, 400);
ctx.lineTo(375, 375);
ctx.lineTo(400, 400);
ctx.lineTo(400, 500);
ctx.lineTo(150, 500);
ctx.closePath();
ctx.fillStyle = 'pink';
ctx.fill();
// Draw their traditional dress
ctx.beginPath();
ctx.moveTo(175, 375);
ctx.lineTo(200, 375);
ctx.lineTo(200, 400);
ctx.lineTo(175, 400);
ctx.closePath();
ctx.fillStyle = 'lightblue';
ctx.fill();
ctx.beginPath();
ctx.moveTo(225, 375);
ctx.lineTo(250, 375);
ctx.lineTo(250, 400);
ctx.lineTo(225, 400);
ctx.closePath();
ctx.fill();
ctx.beginPath();
ctx.moveTo(275, 375);
ctx.lineTo(300, 375);
ctx.lineTo(300, 400);
ctx.lineTo(275, 400);
ctx.closePath();
ctx.fill();
ctx.beginPath();
ctx.moveTo(325, 375);
ctx.lineTo(350, 375);
ctx.lineTo(350, 400);
ctx.lineTo(325, 400);
ctx.closePath();
ctx.fill();
// Fun fact: Korean families love to celebrate traditional holidays together!
// Draw a traditional Korean holiday scene
ctx.fillStyle = 'lightgreen';
ctx.fillRect(100, 100, 400, 300);
ctx.fillStyle = 'goldenrod';
ctx.fillRect(100, 400, 400, 100);
ctx.fillStyle = 'green';
ctx.fillRect(150, 150, 300, 200);
ctx.fillStyle = 'white';
ctx.fillRect(200, 200, 200, 100);
ctx.fillStyle = 'red';
ctx.fillRect(250, 250, 100, 50);
ctx.fillStyle = 'yellow';
ctx.fillRect(275, 275, 50, 25);
// Draw their happy faces
ctx.beginPath();
ctx.arc(150, 150, 30, 0, Math.PI * 2);
ctx.arc(350, 150, 30, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(150, 150, 10, 0, Math.PI * 2);
ctx.arc(350, 150, 10, 0, Math.PI * 2);
ctx.fillStyle = 'black';
ctx.fill();
// Draw their cute noses
ctx.beginPath();
ctx.moveTo(150, 165);
ctx.lineTo(140, 185);
ctx.lineTo(160, 185);
ctx.closePath();
ctx.fillStyle = 'pink';
ctx.fill();
ctx.beginPath();
ctx.moveTo(350, 165);
ctx.lineTo(340, 185);
ctx.lineTo(360, 185);
ctx.closePath();
ctx.fill();
// Draw their joyful mouths
ctx.beginPath();
ctx.arc(150, 170, 10, 0, Math.PI);
ctx.arc(350, 170, 10, 0, Math.PI);
ctx.fillStyle = 'red';
ctx.fill();
// Fun fact: Korean families love to take family photos together!
// Draw a camera to represent their family photos
ctx.fillStyle = 'black';
ctx.fillRect(225, 100, 50, 50);
ctx.fillRect(215, 150, 70, 70);
ctx.fillRect(200, 220, 100, 40);
ctx.fillRect(195, 260, 110, 30);
ctx.fillRect(190, 290, 120, 20);
ctx.fillRect(185, 310, 130, 10);
// Draw a smiley face on the camera
ctx.beginPath();
ctx.arc(250, 180, 20, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(230, 160, 5, 0, Math.PI * 2);
ctx.arc(270, 160, 5, 0, Math.PI * 2);
ctx.fillStyle = 'black';
ctx.fill();
ctx.beginPath();
ctx.moveTo(220, 145);
ctx.lineTo(240, 155);
ctx.lineTo(260, 155);
ctx.lineTo(280, 145);
ctx.lineWidth = 2;
ctx.strokeStyle = 'black';
ctx.stroke();
// Fun fact: Korean families love to have fun and make lasting memories together!
// Draw a fun memory with balloons
ctx.beginPath();
ctx.moveTo(200, 400);
ctx.quadraticCurveTo(250, 350, 300, 400);
ctx.fillStyle = 'red';
ctx.fill();
ctx.beginPath();
ctx.arc(250, 350, 50, 0, Math.PI * 2);
ctx.fillStyle = 'orange';
ctx.fill();
ctx.beginPath();
ctx.arc(250, 300, 50, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(250, 250, 50, 0, Math.PI * 2);
ctx.fillStyle = 'green';
ctx.fill();
ctx.beginPath();
ctx.arc(250, 200, 50, 0, Math.PI * 2);
ctx.fillStyle = 'blue';
ctx.fill();
// Fun fact: Korean families have a strong sense of unity and respect for each other!
// Draw a puzzle to represent their unity
ctx.beginPath();
ctx.moveTo(150, 400);
ctx.lineTo(200, 400);
ctx.lineTo(200, 450);
ctx.lineTo(150, 450);
ctx.closePath();
ctx.fillStyle = 'blue';
ctx.fill();
ctx.beginPath();
ctx.moveTo(200, 400);
ctx.lineTo(250, 400);
ctx.lineTo(250, 450);
ctx.lineTo(200, 450);
ctx.closePath();
ctx.fillStyle = 'red';
ctx.fill();
ctx.beginPath();
ctx.moveTo(250, 400);
ctx.lineTo(300, 400);
ctx.lineTo(300, 450);
ctx.lineTo(250, 450);
ctx.closePath();
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.moveTo(300, 400);
ctx.lineTo(350, 400);
ctx.lineTo(350, 450);
ctx.lineTo(300, 450);
ctx.closePath();
ctx.fillStyle = 'green';
ctx.fill();
// Draw their happy faces
ctx.beginPath();
ctx.arc(175, 425, 15, 0, Math.PI * 2);
ctx.arc(225, 425, 15, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(275, 425, 15, 0, Math.PI * 2);
ctx.arc(325, 425, 15, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(175, 475, 15, 0, Math.PI * 2);
ctx.arc(225, 475, 15, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(275, 475, 15, 0, Math.PI * 2);
ctx.arc(325, 475, 15, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
// Fun fact: Korean families always find reasons to celebrate and have a good time!
// Draw a party hat to represent their celebrations
ctx.beginPath();
ctx.moveTo(150, 100);
ctx.lineTo(200, 100);
ctx.lineTo(200, 150);
ctx.lineTo(150, 150);
ctx.closePath();
ctx.fillStyle = 'blue';
ctx.fill();
ctx.beginPath();
ctx.moveTo(200, 100);
ctx.lineTo(250, 100);
ctx.lineTo(250, 150);
ctx.lineTo(200, 150);
ctx.closePath();
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.moveTo(250, 100);
ctx.lineTo(300, 100);
ctx.lineTo(300, 150);
ctx.lineTo(250, 150);
ctx.closePath();
ctx.fillStyle = 'red';
ctx.fill();
ctx.beginPath();
ctx.moveTo(300, 100);
ctx.lineTo(350, 100);
ctx.lineTo(350, 150);
ctx.lineTo(300, 150);
ctx.closePath();
ctx.fillStyle = 'green';
ctx.fill();
ctx.beginPath();
ctx.moveTo(350, 100);
ctx.lineTo(400, 100);
ctx.lineTo(400, 150);
ctx.lineTo(350, 150);
ctx.closePath();
ctx.fillStyle = 'purple';
ctx.fill();
// Draw some confetti
ctx.beginPath();
ctx.arc(175, 75, 5, 0, Math.PI * 2);
ctx.arc(225, 75, 5, 0, Math.PI * 2);
ctx.arc(275, 75, 5, 0, Math.PI * 2);
ctx.arc(325, 75, 5, 0, Math.PI * 2);
ctx.arc(175, 125, 5, 0, Math.PI * 2);
ctx.arc(225, 125, 5, 0, Math.PI * 2);
ctx.arc(275, 125, 5, 0, Math.PI * 2);
ctx.arc(325, 125, 5, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
// Fun fact: Korean families always bring joy and happiness wherever they go!
// Draw a rainbow to represent their happiness
ctx.beginPath();
ctx.arc(250, 250, 200, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'red';
ctx.lineWidth = 10;
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 185, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'orange';
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 170, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'yellow';
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 155, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'green';
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 140, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'blue';
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 125, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'indigo';
ctx.stroke();
ctx.beginPath();
ctx.arc(250, 250, 110, Math.PI * 0.8, Math.PI * 2.2);
ctx.strokeStyle = 'violet';
ctx.stroke();
// Draw their smiling faces
ctx.beginPath();
ctx.arc(190, 250, 30, 0, Math.PI * 2);
ctx.arc(310, 250, 30, 0, Math.PI * 2);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.beginPath();
ctx.arc(190, 250, 10, 0, Math.PI * 2);
ctx.arc(310, 250, 10, 0, Math.PI * 2);
ctx.fillStyle = 'black';
ctx.fill();
// Draw their happy mouths
ctx.beginPath();
ctx.arc(190, 260, 10, 0, Math.PI);
ctx.arc(310, 260, 10, 0, Math.PI);
ctx.fillStyle = 'red';
ctx.fill();
// Draw their cute noses
ctx.beginPath();
ctx.moveTo(190, 275);
ctx.lineTo(180, 290);
ctx.lineTo(200, 290);
ctx.closePath();
ctx.fillStyle = 'pink';
ctx.fill();
ctx.beginPath();
ctx.moveTo(310, 275);
ctx.lineTo(300, 290);
ctx.lineTo(320, 290);
ctx.closePath();
ctx.fill();
// Fun fact: Korean families are always ready to spread love and laughter!
// Draw a smiley face to represent their laughter
ctx.beginPath();
ctx.arc(250, 250, 100, 0, Math.PI * 2
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.