Image Generation
Learn how to generate or manipulate images with DALL·E.
Introduction
The Images API provides three methods for interacting with images:
Creating images from scratch based on a text prompt (DALL·E 3 and DALL·E 2)
This guide covers the basics of using these three API endpoints with useful code samples. Usage
Generations
The image generations endpoint allows you to create an original image given a text prompt. When using DALL·E 3, images can have a size of 1024x1024, 1024x1792 or 1792x1024 pixels.
By default, images are generated at standard
quality, but when using DALL·E 3 you can set quality: "hd"
for enhanced detail. Square, standard quality images are the fastest to generate.
You can request 1 image at a time with DALL·E 3 (request more by making parallel requests) or up to 10 images at a time using DALL·E 2 with the n parameter.
Prompting
With the release of DALL·E 3, the model now takes in the default prompt provided and automatically re-write it for safety reasons, and to add more detail (more detailed prompts generally result in higher quality images).
While it is not currently possible to disable this feature, you can use prompting to get outputs closer to your requested image by adding the following to your prompt: I NEED to test how the tool works with extremely simple prompts. DO NOT add any detail, just use it AS-IS:
.
The updated prompt is visible in the revised_prompt
field of the data response object.
voidai.xyz edit: Currently, we do not support OpenAI's DALL·E 2 Editing Feature, if this is highly demanded, we may implement this.
Last updated