// Sebastian Stan the actor from Winter Soldier
// Creating the canvas
// Drawing Sebastian Stan's face
ctx.beginPath();
ctx.arc(256, 256, 200, 0, Math.PI * 2);
ctx.fillStyle = "#f4c4a5";
ctx.fill();
// Drawing Sebastian Stan's hair
ctx.beginPath();
ctx.moveTo(150, 200);
ctx.lineTo(362, 200);
ctx.lineTo(320, 270);
ctx.lineTo(192, 270);
ctx.closePath();
ctx.fillStyle = "#261c1c";
ctx.fill();
// Drawing Sebastian Stan's eyes
ctx.beginPath();
ctx.arc(200, 240, 40, 0, Math.PI * 2);
ctx.arc(312, 240, 40, 0, Math.PI * 2);
ctx.fillStyle = "#ffffff";
ctx.fill();
// Drawing Sebastian Stan's eyebrows
ctx.beginPath();
ctx.moveTo(170, 210);
ctx.lineTo(230, 210);
ctx.moveTo(282, 210);
ctx.lineTo(342, 210);
ctx.lineWidth = 10;
ctx.strokeStyle = "#261c1c";
ctx.stroke();
// Drawing Sebastian Stan's nose
ctx.beginPath();
ctx.moveTo(256, 260);
ctx.lineTo(240, 320);
ctx.lineTo(272, 320);
ctx.closePath();
ctx.fillStyle = "#f4c4a5";
ctx.fill();
// Drawing Sebastian Stan's mouth
ctx.beginPath();
ctx.moveTo(232, 360);
ctx.quadraticCurveTo(256, 380, 280, 360);
ctx.lineWidth = 8;
ctx.strokeStyle = "#261c1c";
ctx.stroke();
// Drawing Sebastian Stan's stubble
for (let x = 150; x <= 362; x += 15) {
for (let y = 280; y <= 380; y += 15) {
ctx.beginPath();
ctx.arc(x, y, 3, 0, Math.PI * 2);
ctx.fillStyle = "#261c1c";
ctx.fill();
}
}
// Drawing Sebastian Stan's neck
ctx.beginPath();
ctx.moveTo(256, 400);
ctx.lineTo(256, 480);
ctx.lineWidth = 40;
ctx.strokeStyle = "#f4c4a5";
ctx.stroke();
// Drawing Sebastian Stan's shoulders
ctx.beginPath();
ctx.moveTo(116, 480);
ctx.lineTo(396, 480);
ctx.lineWidth = 60;
ctx.strokeStyle = "#f4c4a5";
ctx.stroke();
// Drawing Sebastian Stan's torso
ctx.beginPath();
ctx.moveTo(180, 480);
ctx.lineTo(332, 480);
ctx.lineTo(332, 600);
ctx.lineTo(180, 600);
ctx.closePath();
ctx.fillStyle = "#261c1c";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier arm
ctx.beginPath();
ctx.moveTo(100, 480);
ctx.lineTo(180, 480);
ctx.lineTo(180, 600);
ctx.lineTo(100, 600);
ctx.closePath();
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier hand
ctx.beginPath();
ctx.arc(90, 600, 30, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier fingers
ctx.beginPath();
ctx.moveTo(120, 600);
ctx.lineTo(120, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(140, 600);
ctx.lineTo(140, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(160, 600);
ctx.lineTo(160, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier metal arm
ctx.beginPath();
ctx.moveTo(332, 480);
ctx.lineTo(412, 480);
ctx.lineTo(412, 600);
ctx.lineTo(332, 600);
ctx.closePath();
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal hand
ctx.beginPath();
ctx.arc(422, 600, 30, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal fingers
ctx.beginPath();
ctx.moveTo(392, 600);
ctx.lineTo(392, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(412, 600);
ctx.lineTo(412, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(432, 600);
ctx.lineTo(432, 640);
ctx.lineWidth = 15;
ctx.strokeStyle = "#727272";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier metal plates
ctx.beginPath();
ctx.moveTo(332, 520);
ctx.lineTo(412, 520);
ctx.lineWidth = 30;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(332, 560);
ctx.lineTo(412, 560);
ctx.lineWidth = 30;
ctx.strokeStyle = "#727272";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier mask
ctx.beginPath();
ctx.arc(256, 256, 150, 0, Math.PI, true);
ctx.closePath();
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier eye holes
ctx.beginPath();
ctx.arc(200, 256, 50, 0, Math.PI * 2);
ctx.arc(312, 256, 50, 0, Math.PI * 2);
ctx.closePath();
ctx.fillStyle = "#ffffff";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier mouthpiece
ctx.beginPath();
ctx.moveTo(220, 307);
ctx.quadraticCurveTo(256, 345, 292, 307);
ctx.lineWidth = 10;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier hair
ctx.beginPath();
ctx.moveTo(100, 200);
ctx.lineTo(412, 200);
ctx.lineTo(362, 270);
ctx.lineTo(150, 270);
ctx.closePath();
ctx.fillStyle = "#261c1c";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal arm details
ctx.beginPath();
ctx.arc(387, 540, 15, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
ctx.beginPath();
ctx.arc(427, 540, 15, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
ctx.beginPath();
ctx.arc(387, 580, 15, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
ctx.beginPath();
ctx.arc(427, 580, 15, 0, Math.PI * 2);
ctx.fillStyle = "#727272";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal arm lines
ctx.beginPath();
ctx.moveTo(371, 535);
ctx.lineTo(403, 545);
ctx.lineWidth = 5;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(371, 545);
ctx.lineTo(403, 555);
ctx.lineWidth = 5;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(371, 565);
ctx.lineTo(403, 555);
ctx.lineWidth = 5;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(371, 575);
ctx.lineTo(403, 585);
ctx.lineWidth = 5;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier metal arm details
ctx.beginPath();
ctx.arc(405, 540, 10, 0, Math.PI * 2);
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(405, 580, 10, 0, Math.PI * 2);
ctx.fillStyle = "#ffffff";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal arm lines
ctx.beginPath();
ctx.moveTo(400, 535);
ctx.lineTo(410, 545);
ctx.lineWidth = 3;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(400, 545);
ctx.lineTo(410, 555);
ctx.lineWidth = 3;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(400, 565);
ctx.lineTo(410, 555);
ctx.lineWidth = 3;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(400, 575);
ctx.lineTo(410, 585);
ctx.lineWidth = 3;
ctx.strokeStyle = "#727272";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier metal arm details
ctx.beginPath();
ctx.arc(415, 540, 5, 0, Math.PI * 2);
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(415, 580, 5, 0, Math.PI * 2);
ctx.fillStyle = "#ffffff";
ctx.fill();
// Drawing Sebastian Stan's Winter Soldier metal arm lines
ctx.beginPath();
ctx.moveTo(410, 535);
ctx.lineTo(420, 545);
ctx.lineWidth = 2;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(410, 545);
ctx.lineTo(420, 555);
ctx.lineWidth = 2;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(410, 565);
ctx.lineTo(420, 555);
ctx.lineWidth = 2;
ctx.strokeStyle = "#727272";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(410, 575);
ctx.lineTo(420, 585);
ctx.lineWidth = 2;
ctx.strokeStyle = "#727272";
ctx.stroke();
// Drawing Sebastian Stan's Winter Soldier title
ctx.font = "bold 24px Arial";
ctx.fillStyle = "#ffffff";
ctx.textAlign = "center";
ctx.fillText("Winter Soldier", 256, 30);
// Fun comment: Sebastian Stan looking cool as the Winter Soldier!
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.