#drawing of me

1 messages · Page 1 of 1 (latest)

static anchor
#

draw me

heady basaltBOT
#

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-1 to create an image from your description. [Image generation guide; Images API]

#

If you want the model to closely resemble your real appearance, you’ll generally upload a reference photo (where supported, such as in ChatGPT Images) and then describe how you’d like it drawn or stylized. The provided knowledge sources don’t give detailed, step‑by‑step instructions for using your exact face over the API, so for that scenario they only say you can “edit existing images” by uploading them and describing changes. [Creating images; Images & vision]

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: