// Anime Couple Looking at a Sunset
// Create a 512x512 canvas
// Get the 2d context
// Background color
ctx.fillStyle = '#FADBD8';
ctx.fillRect(0, 0, 512, 512);
// Draw the sunset
ctx.beginPath();
ctx.arc(256, 256, 200, 0, Math.PI * 2);
const gradient = ctx.createRadialGradient(256, 256, 0, 256, 256, 200);
ctx.fillStyle = gradient;
ctx.fill();
// Draw the sun
ctx.beginPath();
ctx.arc(256, 256, 80, 0, Math.PI * 2);
ctx.fillStyle = '#FDB813';
ctx.fill();
// Draw the couple
ctx.beginPath();
ctx.arc(180, 300, 60, 0, Math.PI * 2); // Boy's head
ctx.fillStyle = '#FDC8B7';
ctx.fill();
ctx.beginPath();
ctx.arc(332, 298, 60, 0, Math.PI * 2); // Girl's head
ctx.fillStyle = '#FDC8B7';
ctx.fill();
// Draw the boy's body
ctx.beginPath();
ctx.moveTo(150, 360); // Left foot
ctx.lineTo(180, 400); // Left leg
ctx.lineTo(180, 500); // Left arm
ctx.lineTo(210, 500); // Right arm
ctx.lineTo(210, 400); // Right leg
ctx.lineTo(240, 360); // Right foot
ctx.fillStyle = '#3A539B';
ctx.fill();
// Draw the girl's body
ctx.beginPath();
ctx.moveTo(300, 360); // Left foot
ctx.lineTo(330, 400); // Left leg
ctx.lineTo(330, 500); // Left arm
ctx.lineTo(360, 500); // Right arm
ctx.lineTo(360, 400); // Right leg
ctx.lineTo(390, 360); // Right foot
ctx.fillStyle = '#3A539B';
ctx.fill();
// Draw the boy's hair
ctx.beginPath();
ctx.arc(180, 300, 80, 0, Math.PI, true); // Boy's hair
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the girl's hair
ctx.beginPath();
ctx.arc(332, 298, 80, 0, Math.PI, true); // Girl's hair
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the boy's eyes
ctx.beginPath();
ctx.arc(160, 280, 10, 0, Math.PI * 2); // Left eye
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(200, 280, 10, 0, Math.PI * 2); // Right eye
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the girl's eyes
ctx.beginPath();
ctx.arc(312, 278, 10, 0, Math.PI * 2); // Left eye
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(352, 278, 10, 0, Math.PI * 2); // Right eye
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the boy's mouth
ctx.beginPath();
ctx.arc(180, 320, 20, 0, Math.PI, true); // Boy's mouth
ctx.fillStyle = '#FF0000';
ctx.fill();
// Draw the girl's mouth
ctx.beginPath();
ctx.arc(332, 318, 20, 0, Math.PI, true); // Girl's mouth
ctx.fillStyle = '#FF0000';
ctx.fill();
// Draw the boy's clothes
ctx.beginPath();
ctx.moveTo(150, 410); // Boy's left shoulder
ctx.lineTo(210, 410); // Boy's right shoulder
ctx.lineTo(240, 460); // Boy's right waist
ctx.lineTo(180, 460); // Boy's left waist
ctx.closePath();
ctx.fillStyle = '#E74C3C';
ctx.fill();
// Draw the girl's clothes
ctx.beginPath();
ctx.moveTo(300, 410); // Girl's left shoulder
ctx.lineTo(360, 410); // Girl's right shoulder
ctx.lineTo(390, 460); // Girl's right waist
ctx.lineTo(330, 460); // Girl's left waist
ctx.closePath();
ctx.fillStyle = '#E74C3C';
ctx.fill();
// Draw the boy's shoes
ctx.beginPath();
ctx.arc(165, 500, 15, 0, Math.PI * 2); // Left shoe
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(235, 500, 15, 0, Math.PI * 2); // Right shoe
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the girl's shoes
ctx.beginPath();
ctx.arc(335, 500, 15, 0, Math.PI * 2); // Left shoe
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(365, 500, 15, 0, Math.PI * 2); // Right shoe
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the boy's hands
ctx.beginPath();
ctx.arc(180, 460, 30, 0, Math.PI * 2); // Left hand
ctx.fillStyle = '#FDC8B7';
ctx.fill();
ctx.beginPath();
ctx.arc(210, 460, 30, 0, Math.PI * 2); // Right hand
ctx.fillStyle = '#FDC8B7';
ctx.fill();
// Draw the girl's hands
ctx.beginPath();
ctx.arc(332, 458, 30, 0, Math.PI * 2); // Left hand
ctx.fillStyle = '#FDC8B7';
ctx.fill();
ctx.beginPath();
ctx.arc(360, 458, 30, 0, Math.PI * 2); // Right hand
ctx.fillStyle = '#FDC8B7';
ctx.fill();
// Draw the boy's shirt collar
ctx.beginPath();
ctx.arc(195, 395, 10, 0, Math.PI * 2); // Boy's shirt collar
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the girl's shirt collar
ctx.beginPath();
ctx.arc(345, 395, 10, 0, Math.PI * 2); // Girl's shirt collar
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the boy's tie
ctx.beginPath();
ctx.moveTo(190, 395); // Top point of the tie
ctx.lineTo(200, 460); // Bottom left point of the tie
ctx.lineTo(210, 395); // Bottom right point of the tie
ctx.closePath();
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the girl's bow
ctx.beginPath();
ctx.moveTo(340, 395); // Top point of the bow
ctx.lineTo(350, 460); // Bottom left point of the bow
ctx.lineTo(360, 395); // Bottom right point of the bow
ctx.closePath();
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the boy's shirt buttons
ctx.beginPath();
ctx.arc(195, 430, 5, 0, Math.PI * 2); // Boy's shirt button 1
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(195, 450, 5, 0, Math.PI * 2); // Boy's shirt button 2
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the girl's shirt buttons
ctx.beginPath();
ctx.arc(345, 430, 5, 0, Math.PI * 2); // Girl's shirt button 1
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(345, 450, 5, 0, Math.PI * 2); // Girl's shirt button 2
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the boy's nose
ctx.beginPath();
ctx.arc(180, 300, 7, 0, Math.PI * 2); // Boy's nose
ctx.fillStyle = '#F5B7B1';
ctx.fill();
// Draw the girl's nose
ctx.beginPath();
ctx.arc(332, 298, 7, 0, Math.PI * 2); // Girl's nose
ctx.fillStyle = '#F5B7B1';
ctx.fill();
// Draw the boy's eyebrows
ctx.beginPath();
ctx.moveTo(150, 260); // Boy's left eyebrow
ctx.lineTo(170, 270);
ctx.lineTo(190, 260);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
ctx.beginPath();
ctx.moveTo(210, 260); // Boy's right eyebrow
ctx.lineTo(230, 270);
ctx.lineTo(250, 260);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
// Draw the girl's eyebrows
ctx.beginPath();
ctx.moveTo(300, 258); // Girl's left eyebrow
ctx.lineTo(320, 268);
ctx.lineTo(340, 258);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
ctx.beginPath();
ctx.moveTo(360, 258); // Girl's right eyebrow
ctx.lineTo(380, 268);
ctx.lineTo(400, 258);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
// Draw the boy's blush
ctx.beginPath();
ctx.arc(135, 310, 15, 0, Math.PI * 2); // Boy's left blush
ctx.fillStyle = '#F8C471';
ctx.fill();
ctx.beginPath();
ctx.arc(225, 310, 15, 0, Math.PI * 2); // Boy's right blush
ctx.fillStyle = '#F8C471';
ctx.fill();
// Draw the girl's blush
ctx.beginPath();
ctx.arc(285, 308, 15, 0, Math.PI * 2); // Girl's left blush
ctx.fillStyle = '#F8C471';
ctx.fill();
ctx.beginPath();
ctx.arc(375, 308, 15, 0, Math.PI * 2); // Girl's right blush
ctx.fillStyle = '#F8C471';
ctx.fill();
// Draw the boy's hair highlight
ctx.beginPath();
ctx.arc(130, 250, 30, 0, Math.PI * 2); // Boy's hair highlight
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the girl's hair highlight
ctx.beginPath();
ctx.arc(382, 248, 30, 0, Math.PI * 2); // Girl's hair highlight
ctx.fillStyle = '#FFFFFF';
ctx.fill();
// Draw the boy's hair detail
ctx.beginPath();
ctx.moveTo(180, 220); // Boy's hair detail
ctx.lineTo(200, 210);
ctx.lineTo(220, 220);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
// Draw the girl's hair detail
ctx.beginPath();
ctx.moveTo(332, 218); // Girl's hair detail
ctx.lineTo(352, 208);
ctx.lineTo(372, 218);
ctx.lineWidth = 3;
ctx.strokeStyle = '#000000';
ctx.stroke();
// Draw the boy's glasses
ctx.beginPath();
ctx.arc(160, 278, 25, 0, Math.PI * 2); // Boy's left lens
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(200, 278, 25, 0, Math.PI * 2); // Boy's right lens
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(160, 278, 15, 0, Math.PI * 2); // Boy's left eye
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(200, 278, 15, 0, Math.PI * 2); // Boy's right eye
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the girl's glasses
ctx.beginPath();
ctx.arc(312, 276, 25, 0, Math.PI * 2); // Girl's left lens
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(352, 276, 25, 0, Math.PI * 2); // Girl's right lens
ctx.fillStyle = '#FFFFFF';
ctx.fill();
ctx.beginPath();
ctx.arc(312, 276, 15, 0, Math.PI * 2); // Girl's left eye
ctx.fillStyle = '#000000';
ctx.fill();
ctx.beginPath();
ctx.arc(352, 276, 15, 0, Math.PI * 2); // Girl's right eye
ctx.fillStyle = '#000000';
ctx.fill();
// Draw the text - Optional
ctx.font = '30px Arial';
ctx.fillStyle = '#000000';
ctx.textAlign = 'center';
ctx.fillText('Anime Couple Looking at a Sunset', 256, 480);
// That's it! Our anime couple is enjoying a beautiful sunset together. π
// 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.