AI book cover generator: a 1600×2560 Kindle ebook cover
Amazon KDP recommends ebook covers 2,560 pixels tall by 1,600 wide. ChatGPT Image 2.5 on Sume takes 1600 × 2560 exactly; add the title and author.

To make a book cover with AI, generate the cover art at the store's size and set the title and author name yourself. For a Kindle ebook, Amazon KDP recommends 2,560 pixels tall by 1,600 wide, and on Sume, ChatGPT Image 2.5 takes exactly 1600 × 2560 as a custom size. A paperback needs a wrap-around cover with a spine and bleed, built on KDP's template in a layout tool.
KDP's numbers are quoted from its Help pages Cover Image Guidelines and Create a Paperback Cover, which can change; Sume facts come from the Image API docs and the Sume API reference. All were read on 2026-09-27.
What size is a Kindle ebook cover?
KDP's recommendation for the marketing cover image, the one shown on your book's Amazon detail page:
| Guideline | KDP's value |
|---|---|
| Dimensions | 2,560 pixels tall × 1,600 pixels wide |
| Resolution | 300 DPI/PPI minimum |
| File size | 5 MB or fewer |
| File format | JPEG preferred |
| Color | RGB; Kindle does not support CMYK |
| Too small | Under 500 pixels on the shortest side is not displayed on the website |
| Content | Title and author on the cover; no spine, bar code, or back cover |
| Light backgrounds | Try a narrow (3–4 pixel) medium-gray border |
How do I generate an ebook cover with Sume?
Send POST /v1/images to ChatGPT Image 2.5 (openai/gpt-image-2.5) with image_size 1600 × 2560. Both edges are multiples of 16, and 4,096,000 pixels is inside the 655,360–8,294,400 range. Ask for jpeg, KDP's preferred format, and describe plain areas where the title and author name will go.
- To base the art on a character sketch or photo, add it in
input_referencesas a public HTTPS URL; ChatGPT Image 2.5 takes up to 16. The model draws a new image, so check faces and details. - Add
nfor up to 4 versions, the model's ceiling today; each image is billed. The price is estimated from size and quality, andusage.costis the USD amount billed. - Results are Sume-hosted, signed URLs in
data[].url. Download the file and check it against KDP's 5 MB limit. - KDP lists 300 DPI as a minimum. DPI is a label stored in the file rather than extra pixels, so set it when you export the final cover.
curl -X POST "https://api.sume.com/v1/images" \
-H "Authorization: Bearer $SUME_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-image-2.5",
"prompt": "Book cover art for a mystery novel: a foggy harbor town at dusk, one lit window, muted blue palette, plain sky in the top third and a quiet band at the bottom for type, no text",
"image_size": { "width": 1600, "height": 2560 },
"output_format": "jpeg"
}'Should the AI write the title and author name?
KDP asks you to check the cover for typos and to make sure the title and author name match your Amazon detail page. Generated lettering can be misspelled, so the safer route is to set the words in a design tool on top of the art. If the model draws them, proofread every letter. AI image with text covers both routes.
Can I make a paperback cover this way?
Only the art. KDP wants a paperback cover as a single PDF that includes the back cover, spine, and front cover as one image, with 0.125 inch (3.2 mm) of bleed added to the top, bottom, and outside edges. Its cover calculator and template generator lays out the full cover from your ink and paper choices, trim size, and page count.
Sume's Image API returns PNG, JPEG, or WebP files, not a PDF, so place the generated art in KDP's template in a layout tool. KDP asks for images at a minimum of 300 DPI, so each printed inch of art needs 300 pixels; AI image for print works through the pixel math and upscaling.
Sources
Related posts
More in Use cases
- AI book trailer maker: turn a blurb and cover into video
An AI book trailer turns your blurb and cover into a short video: narration, mood shots that end on the cover, music, and the title on screen.
- AI coloring page generator: from a prompt or a photo
Ask for black outlines on white with no shading, in a portrait size for your paper. Send a photo as a reference to turn it into a coloring page.
- AI fashion video generator API: editorial films, lookbooks
Make AI fashion editorial videos with the Sume API: run sume-fashion-editorial per look, queue a lookbook in bulk, or animate a cover still yourself.
- AI images for Facebook ads: sizes for Feed, Stories, Reels
Meta recommends 4:5 at 1440×1800 for Feed image ads and 9:16 at 1440×2560 for Stories and Reels. Make each size from one brief and one product photo.
Written by Sume