// Island in Harbor
// Setting the canvas size to 512x512
// Drawing the background
ctx.fillStyle = '#87CEEB'; // Blue sky color
ctx.fillRect(0, 0, 512, 512);
// Drawing the water
ctx.fillStyle = '#1E90FF'; // Deep blue water color
ctx.fillRect(0, 400, 512, 112);
// Drawing the island
ctx.fillStyle = '#8B4513'; // Brown island color
ctx.beginPath();
ctx.moveTo(256, 400); // Top of the island
ctx.lineTo(512, 512); // Bottom right of the island
ctx.lineTo(0, 512); // Bottom left of the island
ctx.closePath();
ctx.fill();
// Drawing the harbor
ctx.fillStyle = '#CD853F'; // Sandy harbor color
ctx.fillRect(150, 400, 212, 112);
// Drawing the palm tree
ctx.fillStyle = '#8B4513'; // Brown palm tree color
ctx.fillRect(200, 100, 15, 250);
// Drawing the palm tree leaves
ctx.fillStyle = '#006400'; // Green palm tree leaves color
ctx.beginPath();
ctx.arc(207.5, 75, 75, 0, Math.PI * 2); // Top circle
ctx.fill();
// Drawing the sun
ctx.fillStyle = '#FFD700'; // Bright yellow sun color
ctx.beginPath();
ctx.arc(450, 50, 40, 0, Math.PI * 2); // Sun circle
ctx.fill();
// Drawing the clouds
ctx.fillStyle = '#FFFFFF'; // White cloud color
ctx.beginPath();
ctx.arc(100, 80, 30, 0, Math.PI * 2); // First cloud circle
ctx.arc(130, 80, 30, 0, Math.PI * 2); // Second cloud circle
ctx.arc(115, 100, 30, 0, Math.PI * 2); // Third cloud circle
ctx.arc(145, 100, 30, 0, Math.PI * 2); // Fourth cloud circle
ctx.fill();
// Drawing the seagull
ctx.fillStyle = '#000000'; // Black seagull color
ctx.beginPath();
ctx.moveTo(320, 120); // Seagull head
ctx.lineTo(310, 110); // Seagull left wing
ctx.lineTo(300, 120); // Seagull body
ctx.lineTo(310, 130); // Seagull right wing
ctx.closePath();
ctx.fill();
// Drawing the seagull eye
ctx.fillStyle = '#FFFFFF'; // White seagull eye color
ctx.beginPath();
ctx.arc(315, 120, 3, 0, Math.PI * 2); // Seagull eye
ctx.fill();
// Drawing the sailboat
ctx.fillStyle = '#FFFFFF'; // White sailboat color
ctx.fillRect(380, 330, 100, 50); // Sailboat body
ctx.beginPath();
ctx.moveTo(380, 330); // Sailboat left mast
ctx.lineTo(430, 280); // Sailboat top mast
ctx.lineTo(480, 330); // Sailboat right mast
ctx.closePath();
ctx.fill();
// Drawing the sailboat sail
ctx.fillStyle = '#FFD700'; // Bright yellow sail color
ctx.beginPath();
ctx.moveTo(430, 280); // Sailboat top mast
ctx.lineTo(430, 330); // Sailboat bottom mast
ctx.lineTo(480, 330); // Sailboat right mast
ctx.closePath();
ctx.fill();
// Drawing the sailboat flag
ctx.fillStyle = '#FF0000'; // Red flag color
ctx.beginPath();
ctx.moveTo(480, 330); // Sailboat right mast
ctx.lineTo(480, 310); // Sailboat flag top
ctx.lineTo(500, 320); // Sailboat flag right
ctx.lineTo(480, 330); // Sailboat flag bottom
ctx.closePath();
ctx.fill();
// Drawing the fish
ctx.fillStyle = '#FFC0CB'; // Pink fish color
ctx.beginPath();
ctx.arc(80, 480, 30, 0, Math.PI * 2); // Fish body
ctx.moveTo(95, 480); // Fish tail
ctx.lineTo(110, 470); // Fish tail top
ctx.lineTo(110, 490); // Fish tail bottom
ctx.closePath();
ctx.fill();
// Drawing the fish eye
ctx.fillStyle = '#000000'; // Black fish eye color
ctx.beginPath();
ctx.arc(95, 480, 3, 0, Math.PI * 2); // Fish eye
ctx.fill();
// Drawing the fish mouth
ctx.strokeStyle = '#000000'; // Black fish mouth color
ctx.beginPath();
ctx.arc(75, 480, 7, 0, Math.PI, true); // Fish mouth
ctx.stroke();
// Drawing the seashells
ctx.fillStyle = '#FFDAB9'; // Peach seashell color
ctx.beginPath();
ctx.arc(380, 450, 15, 0, Math.PI * 2); // First seashell
ctx.arc(410, 450, 15, 0, Math.PI * 2); // Second seashell
ctx.fill();
// Drawing the seashell lines
ctx.strokeStyle = '#FF8C00'; // Dark orange seashell lines color
ctx.beginPath();
ctx.moveTo(372, 450); // First seashell line
ctx.lineTo(385, 445); // First seashell line
ctx.lineTo(398, 450); // First seashell line
ctx.moveTo(402, 450); // Second seashell line
ctx.lineTo(415, 445); // Second seashell line
ctx.lineTo(428, 450); // Second seashell line
ctx.stroke();
// Drawing the crab
ctx.fillStyle = '#DC143C'; // Crimson crab color
ctx.beginPath();
ctx.arc(200, 450, 20, 0, Math.PI * 2); // Crab body
ctx.moveTo(190, 450); // Crab left leg
ctx.lineTo(185, 440); // Crab left leg top
ctx.lineTo(195, 440); // Crab left leg bottom
ctx.moveTo(210, 450); // Crab right leg
ctx.lineTo(215, 440); // Crab right leg top
ctx.lineTo(205, 440); // Crab right leg bottom
ctx.fillRect(198, 455, 4, 15); // Crab mouth
ctx.fill();
// Drawing the crab eyes
ctx.fillStyle = '#FFFFFF'; // White crab eye color
ctx.beginPath();
ctx.arc(195, 445, 3, 0, Math.PI * 2); // Left crab eye
ctx.arc(205, 445, 3, 0, Math.PI * 2); // Right crab eye
ctx.fill();
// Drawing the crab claws
ctx.fillStyle = '#DC143C'; // Crimson crab claws color
ctx.beginPath();
ctx.moveTo(180, 450); // Left crab claw
ctx.lineTo(170, 450); // Left crab claw top
ctx.lineTo(170, 460); // Left crab claw bottom
ctx.moveTo(220, 450); // Right crab claw
ctx.lineTo(230, 450); // Right crab claw top
ctx.lineTo(230, 460); // Right crab claw bottom
ctx.fill();
// Drawing the seahorse
ctx.fillStyle = '#FFA500'; // Orange seahorse color
ctx.beginPath();
ctx.moveTo(320, 460); // Seahorse head
ctx.lineTo(325, 445); // Seahorse neck
ctx.lineTo(335, 460); // Seahorse body
ctx.lineTo(335, 475); // Seahorse tail
ctx.lineTo(325, 490); // Seahorse tail top
ctx.lineTo(320, 475); // Seahorse tail bottom
ctx.closePath();
ctx.fill();
// Drawing the seahorse eye
ctx.fillStyle = '#FFFFFF'; // White seahorse eye color
ctx.beginPath();
ctx.arc(322, 455, 3, 0, Math.PI * 2); // Seahorse eye
ctx.fill();
// Drawing the seahorse mouth
ctx.strokeStyle = '#000000'; // Black seahorse mouth color
ctx.beginPath();
ctx.arc(330, 457, 4, 0, Math.PI, true); // Seahorse mouth
ctx.stroke();
// Drawing the seahorse fin
ctx.fillStyle = '#FFA500'; // Orange seahorse fin color
ctx.beginPath();
ctx.moveTo(335, 465); // Seahorse fin top
ctx.lineTo(335, 455); // Seahorse fin bottom
ctx.lineTo(345, 460); // Seahorse fin right
ctx.closePath();
ctx.fill();
// Drawing the title
ctx.font = 'bold 24px Arial';
ctx.fillStyle = '#000000'; // Black title color
ctx.fillText('Island in Harbor', 160, 30);
// Done drawing!
// Let's sail away to the happy island! π΄ππ’β¨
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.