#drawing of me
1 messages · Page 1 of 1 (latest)
Hi @static anchor. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
You can ask OpenAI tools to “draw me” or “create a drawing of me,” but the way to do it depends on the product you’re using:
-
In ChatGPT (web or mobile): Just type a prompt like “Create a drawing of me in a cartoon style” and, if image generation is available in that GPT, it will use the image generation tool to produce an image from your text description. You can optionally upload a photo of yourself and describe how you want it edited or stylized. [Creating images; GPTs FAQ]
-
Via the API (Images endpoint): Provide a text prompt that describes you and how you want to be drawn, for example:
from openai import OpenAI import base64 client = OpenAI() prompt = "A hand-drawn portrait of me: short brown hair, glasses, blue hoodie, smiling, in a minimalist line-art style." result = client.images.generate( model="gpt-image-1", prompt=prompt, ) image_base64 = result.data[0].b64_json image_bytes = base64.b64decode(image_base64) with open("me_drawing.png", "wb") as f: f.write(image_bytes)This uses the image generation API with
gpt-image-1to create an image from your description. [Image generation guide; Images API]