// Luke Skywalker and Chewbacca's Legendary Adventure
// Oops, Luke accidentally tickled Chewbacca's foot!
ctx.beginPath();
ctx.arc(256, 256, 200, 0, Math.PI * 2); // Draw Chewbacca's fluffy body
ctx.fillStyle = "#a59b7e";
ctx.fill();
ctx.beginPath();
ctx.arc(256, 256, 150, 0, Math.PI * 2); // Draw Chewbacca's head
ctx.fillStyle = "#a59b7e";
ctx.fill();
ctx.beginPath();
ctx.arc(200, 200, 40, 0, Math.PI * 2); // Draw Chewbacca's left eye
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(312, 200, 40, 0, Math.PI * 2); // Draw Chewbacca's right eye
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(256, 300, 60, 0, Math.PI); // Draw Chewbacca's happy mouth
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(256, 380, 100, 0, Math.PI * 2); // Draw Chewbacca's belt
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(256, 380, 90, 0, Math.PI * 2); // Draw Chewbacca's belt buckle
ctx.fillStyle = "#a59b7e";
ctx.fill();
ctx.beginPath();
ctx.moveTo(166, 380); // Draw Chewbacca's bandolier strap
ctx.lineTo(346, 380);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, let's fix this!
ctx.beginPath();
ctx.moveTo(166, 380); // Redraw Chewbacca's bandolier strap
ctx.lineTo(256, 380);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, Luke didn't mean to hurt Chewbacca!
ctx.beginPath();
ctx.moveTo(346, 380); // Redraw Chewbacca's bandolier strap
ctx.lineTo(256, 380);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, Luke accidentally drew a happy sun instead!
ctx.beginPath();
ctx.arc(100, 100, 60, 0, Math.PI * 2); // Draw the sun
ctx.fillStyle = "#f9d71c";
ctx.fill();
ctx.beginPath();
ctx.moveTo(40, 100); // Draw the sun's rays
ctx.lineTo(160, 100);
ctx.lineWidth = 10;
ctx.strokeStyle = "#f9d71c";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(100, 40); // Draw the sun's rays
ctx.lineTo(100, 160);
ctx.lineWidth = 10;
ctx.strokeStyle = "#f9d71c";
ctx.stroke();
// Oops, now Chewbacca is tickling Luke back!
ctx.beginPath();
ctx.moveTo(256, 200); // Draw Luke's body
ctx.lineTo(256, 350);
ctx.lineWidth = 50;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.arc(256, 400, 50, 0, Math.PI * 2); // Draw Luke's head
ctx.fillStyle = "#ffffff";
ctx.fill();
ctx.beginPath();
ctx.arc(230, 380, 10, 0, Math.PI * 2); // Draw Luke's left eye
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(282, 380, 10, 0, Math.PI * 2); // Draw Luke's right eye
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(256, 415, 20, 0, Math.PI); // Draw Luke's surprised mouth
ctx.fillStyle = "#000000";
ctx.fill();
// Oops, Chewbacca and Luke made up and are now friends again!
ctx.beginPath();
ctx.moveTo(256, 350); // Draw Luke's arm
ctx.lineTo(200, 450);
ctx.lineWidth = 30;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
// Oops, let's fix this arm!
ctx.beginPath();
ctx.moveTo(256, 350); // Redraw Luke's arm
ctx.lineTo(312, 450);
ctx.lineWidth = 30;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
// Oops, let's fix this arm again!
ctx.beginPath();
ctx.moveTo(256, 350); // Redraw Luke's arm
ctx.lineTo(256, 450);
ctx.lineWidth = 30;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
// Oops, now Chewbacca is giving Luke a big bear hug!
ctx.beginPath();
ctx.moveTo(256, 350); // Draw Chewbacca's arm
ctx.lineTo(200, 480);
ctx.lineWidth = 30;
ctx.strokeStyle = "#a59b7e";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(256, 350); // Draw Chewbacca's arm
ctx.lineTo(312, 480);
ctx.lineWidth = 30;
ctx.strokeStyle = "#a59b7e";
ctx.stroke();
// Oops, let's fix this hand!
ctx.beginPath();
ctx.arc(200, 480, 30, 0, Math.PI * 2); // Redraw Chewbacca's hand
ctx.fillStyle = "#a59b7e";
ctx.fill();
// Oops, let's fix this hand again!
ctx.beginPath();
ctx.arc(312, 480, 30, 0, Math.PI * 2); // Redraw Chewbacca's hand
ctx.fillStyle = "#a59b7e";
ctx.fill();
// Oops, Luke and Chewbacca are now dancing happily together!
ctx.beginPath();
ctx.moveTo(200, 450); // Draw Luke's leg
ctx.lineTo(200, 512);
ctx.lineWidth = 40;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(312, 450); // Draw Luke's leg
ctx.lineTo(312, 512);
ctx.lineWidth = 40;
ctx.strokeStyle = "#ffffff";
ctx.stroke();
ctx.beginPath();
ctx.arc(200, 512, 50, Math.PI, Math.PI * 2); // Draw Luke's happy foot
ctx.fillStyle = "#000000";
ctx.fill();
ctx.beginPath();
ctx.arc(312, 512, 50, Math.PI, Math.PI * 2); // Draw Luke's happy foot
ctx.fillStyle = "#000000";
ctx.fill();
// Oops, let's fix this leg!
ctx.beginPath();
ctx.moveTo(256, 350); // Redraw Chewbacca's leg
ctx.lineTo(200, 512);
ctx.lineWidth = 40;
ctx.strokeStyle = "#a59b7e";
ctx.stroke();
// Oops, let's fix this leg again!
ctx.beginPath();
ctx.moveTo(256, 350); // Redraw Chewbacca's leg
ctx.lineTo(312, 512);
ctx.lineWidth = 40;
ctx.strokeStyle = "#a59b7e";
ctx.stroke();
// Oops, Chewbacca's foot looks funny!
ctx.beginPath();
ctx.arc(200, 512, 50, Math.PI, Math.PI * 2); // Redraw Chewbacca's foot
ctx.fillStyle = "#a59b7e";
ctx.fill();
// Oops, Chewbacca's foot looks funny again!
ctx.beginPath();
ctx.arc(312, 512, 50, Math.PI, Math.PI * 2); // Redraw Chewbacca's foot
ctx.fillStyle = "#a59b7e";
ctx.fill();
// Oops, Luke and Chewbacca are now having a tickle fight!
ctx.beginPath();
ctx.moveTo(256, 100); // Draw a tickle line
ctx.lineTo(256, 200);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, let's fix this tickle line!
ctx.beginPath();
ctx.moveTo(256, 100); // Redraw a tickle line
ctx.lineTo(256, 180);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, let's add some tickle lines on Chewbacca too!
ctx.beginPath();
ctx.moveTo(256, 200); // Draw a tickle line on Chewbacca
ctx.lineTo(256, 240);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
ctx.beginPath();
ctx.moveTo(256, 240); // Draw a tickle line on Chewbacca
ctx.lineTo(256, 280);
ctx.lineWidth = 10;
ctx.strokeStyle = "#000000";
ctx.stroke();
// Oops, Luke and Chewbacca are laughing so hard!
ctx.font = "40px Arial";
ctx.fillStyle = "#000000";
ctx.textAlign = "center";
ctx.fillText("HAHAHA", 256, 320);
// Oops, time for some happy accidents!
// Oops, I made a whoopsie! Let's fix it with some artistic flair!
// Oops, let's turn this into a beautiful masterpiece!
// Oops, art is all about embracing the happy accidents!
// Oops, my artistic vision is unfolding before my eyes!
// Oops, let's turn this into a masterpiece and call it "The Tickle of Friendship"!
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.