/* Pocket Full of Rubbers */
// Drawing a pocket full of rubbers
// What a colorful sight to see!
// Background
ctx.fillStyle = '#F9F9F9';
ctx.fillRect(0, 0, 512, 512);
// Pocket
ctx.fillStyle = '#191970';
ctx.fillRect(200, 200, 200, 250);
// Rubber 1
ctx.fillStyle = '#FF69B4';
ctx.beginPath();
ctx.arc(250, 300, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 2
ctx.fillStyle = '#FFD700';
ctx.beginPath();
ctx.arc(300, 280, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 3
ctx.fillStyle = '#00FF00';
ctx.beginPath();
ctx.arc(350, 320, 45, 0, Math.PI * 2);
ctx.fill();
// Rubber 4
ctx.fillStyle = '#00BFFF';
ctx.beginPath();
ctx.arc(400, 290, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 5
ctx.fillStyle = '#FF4500';
ctx.beginPath();
ctx.arc(280, 360, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 6
ctx.fillStyle = '#9400D3';
ctx.beginPath();
ctx.arc(330, 330, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 7
ctx.fillStyle = '#FF8C00';
ctx.beginPath();
ctx.arc(380, 380, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 8
ctx.fillStyle = '#8A2BE2';
ctx.beginPath();
ctx.arc(420, 350, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 9
ctx.fillStyle = '#FF1493';
ctx.beginPath();
ctx.arc(310, 400, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 10
ctx.fillStyle = '#008080';
ctx.beginPath();
ctx.arc(370, 420, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 11
ctx.fillStyle = '#FFA500';
ctx.beginPath();
ctx.arc(430, 430, 15, 0, Math.PI * 2);
ctx.fill();
// Rubber 12
ctx.fillStyle = '#800080';
ctx.beginPath();
ctx.arc(390, 460, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 13
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(440, 480, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 14
ctx.fillStyle = '#00FFFF';
ctx.beginPath();
ctx.arc(460, 420, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 15
ctx.fillStyle = '#006400';
ctx.beginPath();
ctx.arc(480, 460, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 16
ctx.fillStyle = '#FFDAB9';
ctx.beginPath();
ctx.arc(500, 400, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 17
ctx.fillStyle = '#B22222';
ctx.beginPath();
ctx.arc(520, 440, 45, 0, Math.PI * 2);
ctx.fill();
// Rubber 18
ctx.fillStyle = '#D2691E';
ctx.beginPath();
ctx.arc(540, 480, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 19
ctx.fillStyle = '#2E8B57';
ctx.beginPath();
ctx.arc(560, 420, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 20
ctx.fillStyle = '#FFFF00';
ctx.beginPath();
ctx.arc(580, 460, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 21
ctx.fillStyle = '#8B4513';
ctx.beginPath();
ctx.arc(600, 400, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 22
ctx.fillStyle = '#FF6347';
ctx.beginPath();
ctx.arc(620, 440, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 23
ctx.fillStyle = '#48D1CC';
ctx.beginPath();
ctx.arc(640, 480, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 24
ctx.fillStyle = '#7B68EE';
ctx.beginPath();
ctx.arc(660, 420, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 25
ctx.fillStyle = '#FF00FF';
ctx.beginPath();
ctx.arc(680, 460, 15, 0, Math.PI * 2);
ctx.fill();
// Rubber 26
ctx.fillStyle = '#228B22';
ctx.beginPath();
ctx.arc(700, 400, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 27
ctx.fillStyle = '#A0522D';
ctx.beginPath();
ctx.arc(720, 440, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 28
ctx.fillStyle = '#9370DB';
ctx.beginPath();
ctx.arc(740, 480, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 29
ctx.fillStyle = '#CD853F';
ctx.beginPath();
ctx.arc(760, 420, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 30
ctx.fillStyle = '#8B008B';
ctx.beginPath();
ctx.arc(780, 460, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 31
ctx.fillStyle = '#FF7F50';
ctx.beginPath();
ctx.arc(800, 400, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 32
ctx.fillStyle = '#ADFF2F';
ctx.beginPath();
ctx.arc(820, 440, 45, 0, Math.PI * 2);
ctx.fill();
// Rubber 33
ctx.fillStyle = '#00BFFF';
ctx.beginPath();
ctx.arc(840, 480, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 34
ctx.fillStyle = '#FF4500';
ctx.beginPath();
ctx.arc(860, 420, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 35
ctx.fillStyle = '#9400D3';
ctx.beginPath();
ctx.arc(880, 460, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 36
ctx.fillStyle = '#FF8C00';
ctx.beginPath();
ctx.arc(900, 400, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 37
ctx.fillStyle = '#8A2BE2';
ctx.beginPath();
ctx.arc(920, 440, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 38
ctx.fillStyle = '#FF1493';
ctx.beginPath();
ctx.arc(940, 480, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 39
ctx.fillStyle = '#008080';
ctx.beginPath();
ctx.arc(960, 420, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 40
ctx.fillStyle = '#FFA500';
ctx.beginPath();
ctx.arc(980, 460, 15, 0, Math.PI * 2);
ctx.fill();
// Rubber 41
ctx.fillStyle = '#800080';
ctx.beginPath();
ctx.arc(1000, 400, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 42
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(1020, 440, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 43
ctx.fillStyle = '#00FFFF';
ctx.beginPath();
ctx.arc(1040, 480, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 44
ctx.fillStyle = '#006400';
ctx.beginPath();
ctx.arc(1060, 420, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 45
ctx.fillStyle = '#FFDAB9';
ctx.beginPath();
ctx.arc(1080, 460, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 46
ctx.fillStyle = '#B22222';
ctx.beginPath();
ctx.arc(1100, 400, 45, 0, Math.PI * 2);
ctx.fill();
// Rubber 47
ctx.fillStyle = '#D2691E';
ctx.beginPath();
ctx.arc(1120, 440, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 48
ctx.fillStyle = '#2E8B57';
ctx.beginPath();
ctx.arc(1140, 480, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 49
ctx.fillStyle = '#FFFF00';
ctx.beginPath();
ctx.arc(1160, 420, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 50
ctx.fillStyle = '#8B4513';
ctx.beginPath();
ctx.arc(1180, 460, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 51
ctx.fillStyle = '#FF6347';
ctx.beginPath();
ctx.arc(1200, 400, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 52
ctx.fillStyle = '#48D1CC';
ctx.beginPath();
ctx.arc(1220, 440, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 53
ctx.fillStyle = '#7B68EE';
ctx.beginPath();
ctx.arc(1240, 480, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 54
ctx.fillStyle = '#FF00FF';
ctx.beginPath();
ctx.arc(1260, 420, 15, 0, Math.PI * 2);
ctx.fill();
// Rubber 55
ctx.fillStyle = '#228B22';
ctx.beginPath();
ctx.arc(1280, 460, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 56
ctx.fillStyle = '#A0522D';
ctx.beginPath();
ctx.arc(1300, 400, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 57
ctx.fillStyle = '#9370DB';
ctx.beginPath();
ctx.arc(1320, 440, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 58
ctx.fillStyle = '#CD853F';
ctx.beginPath();
ctx.arc(1340, 480, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 59
ctx.fillStyle = '#8B008B';
ctx.beginPath();
ctx.arc(1360, 420, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 60
ctx.fillStyle = '#FF7F50';
ctx.beginPath();
ctx.arc(1380, 460, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 61
ctx.fillStyle = '#ADFF2F';
ctx.beginPath();
ctx.arc(1400, 400, 45, 0, Math.PI * 2);
ctx.fill();
// Rubber 62
ctx.fillStyle = '#00BFFF';
ctx.beginPath();
ctx.arc(1420, 440, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 63
ctx.fillStyle = '#FF4500';
ctx.beginPath();
ctx.arc(1440, 480, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 64
ctx.fillStyle = '#9400D3';
ctx.beginPath();
ctx.arc(1460, 420, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 65
ctx.fillStyle = '#FF8C00';
ctx.beginPath();
ctx.arc(1480, 460, 20, 0, Math.PI * 2);
ctx.fill();
// Rubber 66
ctx.fillStyle = '#8A2BE2';
ctx.beginPath();
ctx.arc(1500, 400, 30, 0, Math.PI * 2);
ctx.fill();
// Rubber 67
ctx.fillStyle = '#FF1493';
ctx.beginPath();
ctx.arc(1520, 440, 50, 0, Math.PI * 2);
ctx.fill();
// Rubber 68
ctx.fillStyle = '#008080';
ctx.beginPath();
ctx.arc(1540, 480, 60, 0, Math.PI * 2);
ctx.fill();
// Rubber 69
ctx.fillStyle = '#FFA500';
ctx.beginPath();
ctx.arc(1560, 420, 15, 0, Math.PI * 2);
ctx.fill();
// Rubber 70
ctx.fillStyle = '#800080';
ctx.beginPath();
ctx.arc(1580, 460, 40, 0, Math.PI * 2);
ctx.fill();
// Rubber 71
ctx.fillStyle = '#FF0000';
ctx.beginPath();
ctx.arc(1600, 400, 55, 0, Math.PI * 2);
ctx.fill();
// Rubber 72
ctx.fillStyle = '#00FFFF';
ctx.beginPath();
ctx.arc(1620, 440, 25, 0, Math.PI * 2);
ctx.fill();
// Rubber 73
ctx.fillStyle = '#006400';
ctx.beginPath();
ctx.arc(1640, 480, 35, 0, Math.PI * 2);
ctx.fill();
// Rubber 74
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.