// Solitude
ctx.fillStyle = "#E0E0E0"; // Setting the background color
ctx.fillRect(0, 0, 512, 512); // Creating a rectangle for the background
// Drawing the person
ctx.beginPath();
ctx.arc(256, 256, 125, 0, 2 * Math.PI); // Creating the head
ctx.fillStyle = "#F5DEB3"; // Setting the skin color
ctx.fill(); // Filling the head
ctx.beginPath();
ctx.moveTo(256, 310); // Moving to the neck
ctx.lineTo(256, 420); // Drawing the body
ctx.strokeStyle = "#000"; // Setting the stroke color
ctx.lineWidth = 5; // Setting the stroke width
ctx.stroke(); // Drawing the body
ctx.beginPath();
ctx.moveTo(256, 340); // Moving to the left arm
ctx.lineTo(170, 370); // Drawing the left arm
ctx.stroke(); // Drawing the left arm
ctx.beginPath();
ctx.moveTo(256, 340); // Moving to the right arm
ctx.lineTo(342, 370); // Drawing the right arm
ctx.stroke(); // Drawing the right arm
ctx.beginPath();
ctx.moveTo(256, 420); // Moving to the legs
ctx.lineTo(170, 490); // Drawing the left leg
ctx.lineTo(342, 490); // Drawing the right leg
ctx.stroke(); // Drawing the legs
// Adding tears
ctx.beginPath();
ctx.arc(215, 225, 10, 0, 2 * Math.PI); // Creating left tear
ctx.fillStyle = "#00FFFF"; // Setting the color of tear
ctx.fill(); // Filling the tear
ctx.beginPath();
ctx.arc(295, 225, 10, 0, 2 * Math.PI); // Creating right tear
ctx.fill(); // Filling the tear
// Adding thought bubble
ctx.beginPath();
ctx.arc(400, 150, 80, 0, 2 * Math.PI); // Creating the thought bubble
ctx.fillStyle = "#FFF"; // Setting the color of the bubble
ctx.fill(); // Filling the bubble
ctx.font = "bold 30px Arial"; // Setting the font of the text
ctx.fillStyle = "#000"; // Setting the color of the text
ctx.fillText("I wish", 345, 135); // Adding text to the thought bubble
ctx.fillText("someone", 330, 170);
ctx.fillText("was here", 330, 205);
// Adding flying birds
ctx.beginPath();
ctx.moveTo(50, 50); // Moving to the first point
ctx.lineTo(70, 30); // Drawing the wing
ctx.lineTo(90, 50); // Drawing the body
ctx.lineTo(70, 70); // Drawing the wing
ctx.closePath(); // Closing the path
ctx.fillStyle = "#FFF"; // Setting the color of the bird
ctx.fill(); // Filling the bird
ctx.beginPath();
ctx.moveTo(100, 100); // Moving to the first point
ctx.lineTo(120, 80); // Drawing the wing
ctx.lineTo(140, 100); // Drawing the body
ctx.lineTo(120, 120); // Drawing the wing
ctx.closePath(); // Closing the path
ctx.fill(); // Filling the bird
ctx.beginPath();
ctx.moveTo(430, 60); // Moving to the first point
ctx.lineTo(450, 40); // Drawing the wing
ctx.lineTo(470, 60); // Drawing the body
ctx.lineTo(450, 80); // Drawing the wing
ctx.closePath(); // Closing the path
ctx.fill(); // Filling the bird
// Adding a heart
ctx.beginPath();
ctx.moveTo(390, 380); // Moving to the first point
ctx.bezierCurveTo(390, 350, 360, 320, 330, 320); // Creating the left curve
ctx.bezierCurveTo(300, 320, 270, 350, 270, 380); // Creating the bottom curve
ctx.bezierCurveTo(270, 410, 300, 440, 330, 440); // Creating the right curve
ctx.bezierCurveTo(360, 440, 390, 410, 390, 380); // Creating the top curve
ctx.fillStyle = "#F00"; // Setting the color of the heart
ctx.fill(); // Filling the heart
// Adding a sad cloud
ctx.beginPath();
ctx.arc(100, 400, 50, 0, 2 * Math.PI); // Creating the cloud
ctx.arc(150, 430, 50, 0, 2 * Math.PI);
ctx.arc(200, 400, 50, 0, 2 * Math.PI);
ctx.arc(150, 370, 50, 0, 2 * Math.PI);
ctx.fillStyle = "#FFF"; // Setting the color of the cloud
ctx.fill(); // Filling the cloud
ctx.beginPath();
ctx.arc(80, 370, 20, 0, 2 * Math.PI); // Creating the left eye
ctx.fillStyle = "#000"; // Setting the color of the eye
ctx.fill(); // Filling the eye
ctx.beginPath();
ctx.arc(120, 370, 20, 0, 2 * Math.PI); // Creating the right eye
ctx.fill(); // Filling the eye
ctx.beginPath();
ctx.arc(150, 430, 10, Math.PI / 2, 3 * Math.PI / 2); // Creating the frown
ctx.strokeStyle = "#000"; // Setting the color of the frown
ctx.lineWidth = 5; // Setting the width of the frown
ctx.stroke(); // Drawing the frown
// Adding a speech bubble
ctx.beginPath();
ctx.moveTo(350, 420); // Moving to the first point
ctx.lineTo(420, 420); // Drawing the first line
ctx.lineTo(420, 370); // Drawing the second line
ctx.lineTo(460, 370); // Drawing the third line
ctx.lineTo(460, 330); // Drawing the fourth line
ctx.lineTo(420, 330); // Drawing the fifth line
ctx.lineTo(420, 280); // Drawing the sixth line
ctx.lineTo(350, 280); // Drawing the seventh line
ctx.closePath(); // Closing the path
ctx.fillStyle = "#FFF"; // Setting the color of the speech bubble
ctx.fill(); // Filling the speech bubble
ctx.font = "bold 20px Arial"; // Setting the font of the text
ctx.fillStyle = "#000"; // Setting the color of the text
ctx.fillText("Why am I alone?", 365, 365); // Adding text to the speech bubble
//Adding a shooting star
ctx.beginPath();
ctx.moveTo(60, 150); // Moving to the first point
ctx.lineTo(80, 120); // Drawing the first line
ctx.lineTo(100, 150); // Drawing the second line
ctx.lineTo(140, 150); // Drawing the third line
ctx.lineTo(110, 175); // Drawing the fourth line
ctx.lineTo(120, 215); // Drawing the fifth line
ctx.lineTo(100, 190); // Drawing the sixth line
ctx.lineTo(80, 215); // Drawing the seventh line
ctx.lineTo(90, 175); // Drawing the eigth line
ctx.closePath(); // Closing the path
ctx.fillStyle = "#FFF"; // Setting the color of the star
ctx.fill(); // Filling the star
// Adding a funny comment
// "Being alone is like being in a room without a floor. You don't know if you're walking on the ground or about to fall." - Andrew Stanton
// But at least there's a heart, a speech bubble, and shooting star to brighten things up!
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.