Drawing Games Logo

Drawing Games Logo - DrawGPT
a logo for an app titled "Drawing Games" that is described as: "Play fun drawing games". try not to use text on this drawing.
Bot
...

Javascript Code

                        // Title: "Drawing Games Logo"
// Description: Playful logo for the "Drawing Games" app without using text.

// Setting up the canvas

// Creating the logo
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold
ctx.fillRect(0, 0, 512, 512); // Filling the canvas with gold

ctx.fillStyle = '#FF7F00'; // Setting the fill color to orange

// Drawing a paintbrush
ctx.beginPath();
ctx.moveTo(200, 300); // Starting point of the handle
ctx.lineTo(200, 100); // Top of the handle
ctx.lineTo(300, 200); // Bottom right of the handle
ctx.lineTo(400, 150); // Top of the brush
ctx.lineTo(450, 200); // Bottom right of the brush
ctx.lineTo(350, 300); // Bottom left of the brush
ctx.closePath();
ctx.fill();

// Drawing a gamepad
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(300, 400); // Top-left corner of the gamepad
ctx.lineTo(400, 400); // Top-right corner of the gamepad
ctx.lineTo(425, 475); // Bottom-right corner of the gamepad
ctx.lineTo(275, 475); // Bottom-left corner of the gamepad
ctx.closePath();
ctx.fill();

// Drawing a pencil
ctx.fillStyle = '#FF69B4'; // Setting the fill color to hot pink

ctx.beginPath();
ctx.moveTo(100, 400); // Top-left corner of the pencil
ctx.lineTo(200, 400); // Top-right corner of the pencil
ctx.lineTo(275, 475); // Bottom-right corner of the pencil
ctx.lineTo(200, 300); // Bottom-left corner of the pencil
ctx.closePath();
ctx.fill();

// Drawing a smiley face
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold

ctx.beginPath();
ctx.arc(400, 100, 50, 0, Math.PI * 2, false); // Drawing the head
ctx.moveTo(385, 90); // Drawing the left eye
ctx.arc(375, 90, 10, 0, Math.PI * 2, false);
ctx.moveTo(415, 90); // Drawing the right eye
ctx.arc(405, 90, 10, 0, Math.PI * 2, false);
ctx.moveTo(400, 115); // Drawing the mouth
ctx.arc(400, 115, 20, 0, Math.PI, false);
ctx.closePath();
ctx.fill();

// Drawing a funny face
ctx.fillStyle = '#FF7F00'; // Setting the fill color to orange

ctx.beginPath();
ctx.arc(100, 100, 50, 0, Math.PI * 2, false); // Drawing the head
ctx.moveTo(85, 90); // Drawing the left eye
ctx.arc(75, 90, 10, 0, Math.PI * 2, false);
ctx.moveTo(115, 90); // Drawing the right eye
ctx.arc(105, 90, 10, 0, Math.PI * 2, false);
ctx.moveTo(95, 120); // Drawing the mouth
ctx.arc(100, 120, 25, 0, Math.PI, true);
ctx.closePath();
ctx.fill();

// Drawing a funny hat
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(75, 50); // Top-left corner of the hat
ctx.lineTo(125, 50); // Top-right corner of the hat
ctx.lineTo(100, 0); // Bottom of the hat
ctx.closePath();
ctx.fill();

// Drawing a funny balloon
ctx.fillStyle = '#FF69B4'; // Setting the fill color to hot pink

ctx.beginPath();
ctx.moveTo(400, 300); // Top-left corner of the balloon
ctx.lineTo(450, 250); // Top-right corner of the balloon
ctx.lineTo(400, 200); // Bottom-right corner of the balloon
ctx.lineTo(350, 250); // Bottom-left corner of the balloon
ctx.closePath();
ctx.fill();

// Drawing a funny fish
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(150, 350); // Top-left corner of the fish body
ctx.lineTo(200, 300); // Top-right corner of the fish body
ctx.lineTo(200, 400); // Bottom-right corner of the fish body
ctx.lineTo(150, 450); // Bottom-left corner of the fish body
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.moveTo(200, 350); // Top-left corner of the fish tail
ctx.lineTo(275, 375); // Top-right corner of the fish tail
ctx.lineTo(200, 400); // Bottom-right corner of the fish tail
ctx.closePath();
ctx.fill();

// Drawing a funny rocket
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold

ctx.beginPath();
ctx.moveTo(350, 100); // Top-left corner of the rocket body
ctx.lineTo(400, 50); // Top-right corner of the rocket body
ctx.lineTo(450, 100); // Bottom-right corner of the rocket body
ctx.lineTo(400, 150); // Bottom-left corner of the rocket body
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.moveTo(400, 150); // Top-left corner of the rocket head
ctx.lineTo(375, 175); // Top-right corner of the rocket head
ctx.lineTo(400, 200); // Bottom-right corner of the rocket head
ctx.lineTo(425, 175); // Bottom-left corner of the rocket head
ctx.closePath();
ctx.fill();

// Drawing a funny cloud
ctx.fillStyle = '#FF7F00'; // Setting the fill color to orange

ctx.beginPath();
ctx.arc(100, 200, 50, 0, Math.PI * 2, false); // Drawing the leftmost cloud
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.arc(150, 200, 50, 0, Math.PI * 2, false); // Drawing the middle cloud
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.arc(200, 200, 50, 0, Math.PI * 2, false); // Drawing the rightmost cloud
ctx.closePath();
ctx.fill();

// Drawing a funny tree
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(375, 400); // Bottom-left corner of the tree trunk
ctx.lineTo(425, 400); // Bottom-right corner of the tree trunk
ctx.lineTo(400, 275); // Top of the tree trunk
ctx.closePath();
ctx.fill();

ctx.fillStyle = '#00FF00'; // Setting the fill color to green

ctx.beginPath();
ctx.arc(400, 275, 75, 0, Math.PI * 2, false); // Drawing the tree top
ctx.closePath();
ctx.fill();

// Drawing a funny lightning bolt
ctx.strokeStyle = '#FF69B4'; // Setting the stroke color to hot pink
ctx.lineWidth = 4; // Setting the line width to 4

ctx.beginPath();
ctx.moveTo(50, 100); // Starting point of the lightning bolt
ctx.lineTo(150, 250); // First segment of the lightning bolt
ctx.lineTo(50, 250); // Second segment of the lightning bolt
ctx.lineTo(150, 400); // Third segment of the lightning bolt
ctx.lineTo(250, 400); // Fourth segment of the lightning bolt
ctx.lineTo(150, 250); // Fifth segment of the lightning bolt
ctx.lineTo(250, 250); // Sixth segment of the lightning bolt
ctx.lineTo(150, 100); // Last segment of the lightning bolt
ctx.closePath();
ctx.stroke();

// Drawing a funny paint palette
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold

ctx.beginPath();
ctx.moveTo(275, 100); // Top-left corner of the paint palette
ctx.lineTo(425, 100); // Top-right corner of the paint palette
ctx.lineTo(400, 175); // Bottom-right corner of the paint palette
ctx.lineTo(300, 175); // Bottom-left corner of the paint palette
ctx.closePath();
ctx.fill();

// Drawing a funny easel
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(275, 250); // Top-left corner of the easel
ctx.lineTo(425, 250); // Top-right corner of the easel
ctx.lineTo(400, 400); // Bottom-right corner of the easel
ctx.lineTo(300, 400); // Bottom-left corner of the easel
ctx.closePath();
ctx.fill();

// Drawing a funny star
ctx.fillStyle = '#FF69B4'; // Setting the fill color to hot pink

ctx.beginPath();
ctx.moveTo(275, 250); // Top point of the star
ctx.lineTo(325, 400); // Bottom-left point of the star
ctx.lineTo(425, 325); // Top-right point of the star
ctx.lineTo(275, 325); // Bottom point of the star
ctx.lineTo(375, 400); // Top-left point of the star
ctx.closePath();
ctx.fill();

// Drawing a funny question mark
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.arc(425, 350, 50, Math.PI * 1.5, Math.PI * 0.5, false); // Drawing the top curve
ctx.lineTo(425, 475); // Drawing the vertical line
ctx.arc(425, 475, 25, Math.PI * 0.5, Math.PI * 1.5, true); // Drawing the bottom curve
ctx.closePath();
ctx.fill();

// Drawing a funny exclamation mark
ctx.strokeStyle = '#FF7F00'; // Setting the stroke color to orange
ctx.lineWidth = 8; // Setting the line width to 8

ctx.beginPath();
ctx.moveTo(350, 350); // Starting point of the exclamation mark
ctx.lineTo(350, 475); // Vertical line of the exclamation mark
ctx.closePath();
ctx.stroke();

// Drawing a funny heart
ctx.fillStyle = '#FF69B4'; // Setting the fill color to hot pink

ctx.beginPath();
ctx.moveTo(275, 300); // Top-left corner of the heart
ctx.bezierCurveTo(275, 225, 375, 225, 375, 300); // Top curve of the heart
ctx.bezierCurveTo(375, 375, 275, 425, 275, 425); // Bottom curve of the heart
ctx.closePath();
ctx.fill();

// Drawing a funny dice
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold

ctx.beginPath();
ctx.moveTo(150, 100); // Top-left corner of the dice
ctx.lineTo(250, 100); // Top-right corner of the dice
ctx.lineTo(250, 200); // Bottom-right corner of the dice
ctx.lineTo(150, 200); // Bottom-left corner of the dice
ctx.closePath();
ctx.fill();

ctx.fillStyle = '#FF7F00'; // Setting the fill color to orange

ctx.beginPath();
ctx.arc(200, 150, 25, 0, Math.PI * 2, false); // Drawing the dot on the dice
ctx.closePath();
ctx.fill();

// Drawing a funny arrow
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.moveTo(50, 50); // Top-left corner of the arrow
ctx.lineTo(150, 50); // Top-right corner of the arrow
ctx.lineTo(150, 150); // Bottom-right corner of the arrow
ctx.lineTo(200, 100); // Tip of the arrow
ctx.lineTo(150, 50); // Bottom-left corner of the arrow
ctx.lineTo(150, 150); // Top-left corner of the arrow
ctx.lineTo(50, 150); // Bottom-right corner of the arrow
ctx.closePath();
ctx.fill();

// Drawing a funny sun
ctx.fillStyle = '#FFD700'; // Setting the fill color to gold

ctx.beginPath();
ctx.arc(50, 50, 50, 0, Math.PI * 2, false); // Drawing the sun
ctx.closePath();
ctx.fill();

// Drawing a funny moon
ctx.fillStyle = '#FF7F00'; // Setting the fill color to orange

ctx.beginPath();
ctx.arc(200, 50, 50, Math.PI * 0.5, Math.PI * 1.5, false); // Drawing the moon
ctx.closePath();
ctx.fill();

// Drawing a funny cloud
ctx.fillStyle = '#00CED1'; // Setting the fill color to dark turquoise

ctx.beginPath();
ctx.arc(350, 50, 50, 0, Math.PI * 2, false); // Drawing the cloud
ctx.closePath();
ctx.fill();

// Drawing a funny flower
ctx.fillStyle = '#FF69B4'; // Setting the fill color to hot pink

ctx.beginPath();
ctx.moveTo(50, 200); // Top-left corner of the flower
ctx.lineTo(100, 150); // Top-right corner of the flower
ctx.lineTo(100, 200); // Bottom-right corner of the flower
ctx.lineTo(50, 250); // Bottom-left corner of the flower
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.moveTo(100, 200); // Top-left corner of the petal
ctx.lineTo(150, 150); // Top-right corner of the petal
ctx.lineTo(200, 200); // Bottom-right corner of the petal
ctx.lineTo(150, 250); // Bottom-left corner of the petal
ctx.closePath();
ctx.fill();

ctx.beginPath();
ctx.moveTo(100, 200); // Top-left corner of the petal
ctx.lineTo(150,

Info

Created On: July 30, 2023
Created By: @DrawGPT

AI

Model: gpt-3.5-turbo-16k-0613
Time: 60 seconds
Prompt Tokens: 202
Completion Tokens: 3000
Total Token Cost: 3202
DrawGPT logo DrawGPT logo

Compare & Benchmark AI Models

Try the new DrawGPT Compare

  • Instantly compare the latest AI models side-by-side.
  • Top models: GPT, Gemini, Claude, Grok, SDXL.
  • From OpenAI, Google, Anthropic, xAI, Scenario.gg.
  • Generate images or text with multiple models at once.
  • See results in real time, share, and benchmark.
Try DrawGPT Compare →
DrawGPT Compare demo
DrawGPT logo DrawGPT logo

Draw, Sketch, Paint, or Doodle Instantly

This is where you can draw anything—then AI turns it into real 3D images and more!

  • Draw, sketch, paint, or doodle anything right in your browser.
  • AI transforms your creations into 3D images, vector art, and more.
  • Create images from text prompts using top AI models: DALL-E 3, Gemini, Stable Diffusion, and more.
  • No subscription required – just use tokens for each image.
  • Download as PNG, SVG, or vector graphics.
  • Perfect for logos, icons, art, textures, patterns, and game assets.
  • Type anything, get an image instantly. Commercial use allowed!
Try DrawGPT Draw →
DrawGPT Draw demo

NEW COMMUNITY AI IMAGES


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.

FAQ

What is DrawGPT?

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.

Why Is This Different?

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.

What Can DrawGPT Draw?

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!

Why Are They Weird?

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.

Is This ChatGPT?

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.

Copyright

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 Private

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.