That's it for today folks! Hope you enjoyed this little drawing of Janet Yellin as a cute Guinea Pig eating dollars!
// Janet Yellin the Guinea Pig
// Let's draw Janet Yellin as a cute guinea pig
// Draw the background
ctx.fillStyle = '#F5DEB3';
ctx.fillRect(0, 0, 512, 512);
// Draw Janet Yellin's face
ctx.beginPath();
ctx.fillStyle = '#FCE5CD';
ctx.arc(256, 256, 150, 0, Math.PI * 2);
ctx.fill();
// Add some cute guinea pig ears
ctx.beginPath();
ctx.fillStyle = '#FCE5CD';
ctx.moveTo(180, 200);
ctx.quadraticCurveTo(200, 150, 240, 180);
ctx.lineTo(240, 200);
ctx.fill();
ctx.beginPath();
ctx.fillStyle = '#FCE5CD';
ctx.moveTo(332, 200);
ctx.quadraticCurveTo(312, 150, 272, 180);
ctx.lineTo(272, 200);
ctx.fill();
// Draw her eyes
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.arc(210, 240, 30, 0, Math.PI * 2);
ctx.arc(302, 240, 30, 0, Math.PI * 2);
ctx.fill();
// Draw her pupils
ctx.beginPath();
ctx.fillStyle = '#000000';
ctx.arc(210, 240, 15, 0, Math.PI * 2);
ctx.arc(302, 240, 15, 0, Math.PI * 2);
ctx.fill();
// Draw her nose
ctx.beginPath();
ctx.fillStyle = '#FFCBA4';
ctx.arc(256, 280, 30, 0, Math.PI * 2);
ctx.fill();
// Add some whiskers
ctx.beginPath();
ctx.moveTo(190, 280);
ctx.lineTo(120, 260);
ctx.moveTo(190, 300);
ctx.lineTo(120, 300);
ctx.moveTo(322, 280);
ctx.lineTo(392, 260);
ctx.moveTo(322, 300);
ctx.lineTo(392, 300);
ctx.strokeStyle = '#000000';
ctx.stroke();
// Add some blush
ctx.beginPath();
ctx.fillStyle = '#FFA07A';
ctx.arc(220, 310, 25, 0, Math.PI * 2);
ctx.arc(292, 310, 25, 0, Math.PI * 2);
ctx.fill();
// Draw the dollar bills
ctx.beginPath();
ctx.fillStyle = '#85BB65';
ctx.fillRect(100, 450, 50, 150);
ctx.fillRect(175, 400, 50, 200);
ctx.fillRect(250, 450, 50, 150);
ctx.fillRect(325, 400, 50, 200);
ctx.fillRect(400, 450, 50, 150);
// Draw her cute little Guinea Pig mouth
ctx.beginPath();
ctx.fillStyle = '#FFCBA4';
ctx.arc(256, 340, 40, 0, Math.PI);
ctx.fill();
// Add some cute Guinea Pig teeth
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.moveTo(236, 340);
ctx.lineTo(236, 360);
ctx.lineTo(246, 350);
ctx.fill();
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.moveTo(276, 340);
ctx.lineTo(276, 360);
ctx.lineTo(266, 350);
ctx.fill();
// Add some cute Guinea Pig whiskers
ctx.beginPath();
ctx.moveTo(200, 370);
ctx.lineTo(130, 340);
ctx.moveTo(200, 390);
ctx.lineTo(130, 400);
ctx.moveTo(312, 370);
ctx.lineTo(382, 340);
ctx.moveTo(312, 390);
ctx.lineTo(382, 400);
ctx.strokeStyle = '#000000';
ctx.stroke();
// Add some cute Guinea Pig ears
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.arc(200, 200, 30, 0, Math.PI * 2);
ctx.arc(312, 200, 30, 0, Math.PI * 2);
ctx.fill();
// Add some cute Guinea Pig noses
ctx.beginPath();
ctx.fillStyle = '#FFCBA4';
ctx.arc(200, 220, 15, 0, Math.PI * 2);
ctx.arc(312, 220, 15, 0, Math.PI * 2);
ctx.fill();
// Add some cute Guinea Pig eyes
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.arc(200, 240, 7, 0, Math.PI * 2);
ctx.arc(312, 240, 7, 0, Math.PI * 2);
ctx.fill();
// Add some cute Guinea Pig pupils
ctx.beginPath();
ctx.fillStyle = '#000000';
ctx.arc(200, 240, 3, 0, Math.PI * 2);
ctx.arc(312, 240, 3, 0, Math.PI * 2);
ctx.fill();
// Add some cute Guinea Pig mouths
ctx.beginPath();
ctx.fillStyle = '#FFCBA4';
ctx.arc(200, 280, 20, 0, Math.PI);
ctx.arc(312, 280, 20, 0, Math.PI);
ctx.fill();
// Add some cute Guinea Pig teeth
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.moveTo(180, 280);
ctx.lineTo(180, 300);
ctx.lineTo(190, 290);
ctx.fill();
ctx.beginPath();
ctx.fillStyle = '#FFFFFF';
ctx.moveTo(332, 280);
ctx.lineTo(332, 300);
ctx.lineTo(322, 290);
ctx.fill();
// Add some cute Guinea Pig tongues
ctx.beginPath();
ctx.fillStyle = '#FFA07A';
ctx.arc(200, 295, 10, 0, Math.PI);
ctx.arc(312, 295, 10, 0, Math.PI);
ctx.fill();
// Add some cute Guinea Pig ears
ctx.beginPath();
ctx.fillStyle = '#FCE5CD';
ctx.arc(180, 200, 20, 0, Math.PI * 2);
ctx.arc(332, 200, 20, 0, Math.PI * 2);
ctx.fill();
// Add some cute Guinea Pig noses
ctx.beginPath();
ctx.fillStyle = '#FFCBA4';
ctx.arc(180, 220, 10, 0, Math.PI * 2);
ctx.arc(332, 220, 10, 0, Math.PI * 2);
ctx.fill();
// Draw the dollar bills as Guinea Pig food
ctx.beginPath();
ctx.fillStyle = '#85BB65';
ctx.arc(125, 475, 10, 0, Math.PI * 2);
ctx.arc(125, 500, 10, 0, Math.PI * 2);
ctx.arc(125, 525, 10, 0, Math.PI * 2);
ctx.arc(200, 425, 10, 0, Math.PI * 2);
ctx.arc(200, 450, 10, 0, Math.PI * 2);
ctx.arc(200, 475, 10, 0, Math.PI * 2);
ctx.arc(200, 500, 10, 0, Math.PI * 2);
ctx.arc(200, 525, 10, 0, Math.PI * 2);
ctx.arc(275, 475, 10, 0, Math.PI * 2);
ctx.arc(275, 500, 10, 0, Math.PI * 2);
ctx.arc(275, 525, 10, 0, Math.PI * 2);
ctx.arc(350, 425, 10, 0, Math.PI * 2);
ctx.arc(350, 450, 10, 0, Math.PI * 2);
ctx.arc(350, 475, 10, 0, Math.PI * 2);
ctx.arc(350, 500, 10, 0, Math.PI * 2);
ctx.arc(350, 525, 10, 0, Math.PI * 2);
ctx.arc(425, 475, 10, 0, Math.PI * 2);
ctx.arc(425, 500, 10, 0, Math.PI * 2);
ctx.arc(425, 525, 10, 0, Math.PI * 2);
ctx.fill();
// Add some text for fun
ctx.font = 'bold 32px Arial';
ctx.fillStyle = '#000000';
ctx.textAlign = 'center';
ctx.fillText('Janet Yellin the Guinea Pig', 256, 50);
// Add some more text for fun
ctx.font = '20px Arial';
ctx.fillStyle = '#000000';
ctx.textAlign = 'center';
ctx.fillText('Nom Nom Nom', 256, 495);
// That's it for today folks!
// Hope you enjoyed this little drawing of Janet Yellin as a cute Guinea Pig eating dollars!
These are recent AI images made by the community!
DrawGPT is a an AI art generator that uses the GPT-3, GPT-4, DALL-E 3, Custom GPTs, ChatGPT, and other large language models by OpenAI to generate new images from text prompts.
The AI is able to express itself visually through words by writing code to draw and create unique images. This is the same AI powering the very popular ChatGPT large language model AI.
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!
GPT-3, GPT-4, ChatGPT, and DALL-E 3 only allow input from words. Even GPT-4V which uses image recogintion via AI converts the output to words for use with other AI models. That makes their understanding of the visual world extremely unusual. This AI is able to draw images just like ChatGPT can draw images.
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 are made public during submission.
Depending on the situation the prompts themselves are stored internally for research purposes but given that people are morons and put things in there like personal information it is unlikely DrawGPT would ever be able to release the raw prompts publicly.
Employees at OpenAI and DrawGPT have access to any prompts you submit.
DO NOT SUBMIT PERSONAL INFORMATION.
No.