DALL·E 3 - AI Image Generation AI工具使用教程与评测
PaidDALL·E 3 is OpenAI's latest AI image generation model that precisely follows complex text descriptions to produce high-quality images. It significantly improves prompt adherence over its predecessor, eliminating the need for complex prompt engineering. Available free via ChatGPT Plus and through the OpenAI API.
DALL·E 3 is OpenAI's third-generation AI image generation model, representing a major leap in text-to-image technology. Compared to earlier models, DALL·E 3 dramatically improves its ability to understand and follow complex text descriptions, greatly reducing users' reliance on prompt engineering.
Users can access DALL·E 3 directly through ChatGPT by simply describing the image they want in conversation. Developers can also integrate image generation capabilities into their own applications via the OpenAI API. DALL·E 3 supports a wide range of artistic styles, compositions, and scenes, widely used in creative design, content creation, and marketing.
from openai import OpenAI
client = OpenAI(api_key='your_api_key')
response = client.images.generate(
model='dall-e-3',
prompt='A futuristic Tokyo street at sunset, cyberpunk style',
size='1024x1024',
quality='standard', # or 'hd'
n=1
)
print(response.data[0].url)
| Quality | Size | Price/Image |
|---|---|---|
| Standard | 1024×1024 | $0.040 |
| Standard | 1024×1792 / 1792×1024 | $0.080 |
| HD | 1024×1024 | $0.080 |
| HD | 1024×1792 / 1792×1024 | $0.120 |