DreamPoster: Unified T2I Poster Generation
- DreamPoster is a unified text-to-image generation framework that creates high-quality posters from source images and textual prompts while ensuring content fidelity and design flexibility.
- It leverages the Seedream 3.0 Diffusion-Transformer backbone with multi-modal embeddings and a systematic data annotation pipeline to support diverse layout outputs.
- Empirical results demonstrate that DreamPoster significantly outperforms GPT-4o and SeedEdit 3.0 in prompt compliance, subject preservation, and overall usability.
DreamPoster is a unified text-to-image (T2I) generation framework designed for synthesizing high-quality posters from user-provided source images and textual prompts, with explicit support for content fidelity, flexible resolution, and diverse layout outputs. Built on the Seedream 3.0 backbone, DreamPoster integrates systematic data annotation and a progressive, multi-stage training regimen. It achieves state-of-the-art usability and design quality benchmarks, significantly outperforming both GPT-4o and SeedEdit 3.0 in empirical evaluations (Hu et al., 6 Jul 2025).
1. Seedream 3.0 Diffusion-Transformer Backbone
DreamPoster adopts the Seedream 3.0 architecture, utilizing a diffusion–transformer (DiT) backbone that unifies three input modalities: a source image , a prompt (typically title, tagline, etc.), and a noisy target latent . Each modality is embedded as follows:
- Image Embedding: The input image is partitioned into patches. Each patch is projected into a -dimensional space, forming .
- Text Embedding: The textual prompt is processed using a standard encoder (e.g., RoBERTa/T5) to yield .
- Noisy-Latent Embedding: The current diffusion latent is flattened and projected to obtain 0.
Learnable positional embeddings 1, 2, 3 are added to each token according to modality. These are concatenated:
4
The sequence 5 is passed through 6 transformer diffusion blocks, each of which applies LayerNorm, MultiHeadSelfAttention, and a feedforward MLP to jointly attend over all modalities. The model predicts the denoising term 7, optimized under a standard DDPM objective:
8
2. Data Annotation and Poster Curation Pipeline
The data annotation pipeline is engineered to yield well-structured triplets 9 and detailed typographic/layout metadata:
- Raw-Poster Filtering: Poster candidates undergo OCR (PP-OCR [Du et al. 2020]) and are given an aesthetic score 0 from a pretrained network. Only posters with at least one OCR box and 1 are retained.
- Source-Target Pairing:
- Extract all text-box masks 2.
- Inpaint the union of text regions 3 from 4 to obtain a clean background 5.
- Optionally segment the main subject as 6.
- Concatenate all recognized OCR strings to yield 7.
- The triplet is: 8.
- Poster-Captioner: An image captioning model outputs:
- Glyph-caption 9: font, size, color, and position for each string.
- Layout-caption 0: global layout properties (e.g., “title at top center”).
- Supervision is based on human-verified templates.
A high-level pseudocode is as follows: 1
3. Progressive Multi-Stage Training Regimen
DreamPoster employs a three-stage progressive curriculum:
- Stage 1 — Single-Task Text-Addition: Trained only on pairs where the poster differs by overlaying 1 on 2, using 3 conditioned on 4.
- Stage 2 — Multi-Task Mixed Training: Incorporates five subtasks—addition, deletion, modification, restyling, layout shift. Each subtask is represented by a task tag 5 encoded as extra tokens. The loss is
6
- Stage 3 — Fine-Grained Aesthetic Alignment: Fine-tuning on a curated set of highly rated posters, the objective adds an aesthetic-alignment regularization. With 7 a differentiable aesthetic network,
8
where 9 is a hyperparameter. Each stage fine-tunes from the previous weights, using Adam and learning rate decay.
4. Evaluation Methodology and Empirical Results
DreamPoster is evaluated on a test set of 500 held-out poster scenarios covering movie, product promo, holiday card, and event flyer applications. Evaluation utilizes both expert designer rating and large-scale user studies:
- Expert Ratings (40 designers):
- Prompt Following (PF) ∈ [1,5]
- Subject Preservation (SP) ∈ [1,5]
- Design Sense (DS) ∈ [1,5]
- User Study (40 users, 30 designers):
- Usability Rate (UR): Fraction of outputs with fewer than 3 “issues.”
- Satisfaction Rate (SR): Fraction with zero issues.
Quantitative Comparison
| Method | PF (1–5) | SP (1–5) | DS (1–5) | Usability (%) |
|---|---|---|---|---|
| DreamPoster | 3.88 | 3.38 | 3.19 | 88.55 |
| GPT-4o | 2.70 | 2.15 | 1.95 | 47.56 |
| SeedEdit 3.0 | 2.10 | 1.80 | 1.62 | 25.96 |
DreamPoster achieves the highest ratings in prompt compliance (PF), content (SP), and design (DS), and a usability rate of 88.6%. This is nearly double GPT-4o and triple SeedEdit 3.0’s usability rate. Qualitative analysis illustrates that DreamPoster preserves aspect-ratio flexibility and typographic hierarchy, whereas baselines distort content or lack layout sophistication.
5. Content Fidelity, Layout Flexibility, and Aesthetic Alignment
DreamPoster explicitly conditions on both user image and text, enabling faithful subject preservation and prompt following. Layout generation leverages enriched annotations (glyph and layout captions), supporting flexible aspect ratios and robust typographic hierarchy. The aesthetic alignment objective in Stage 3 directly optimizes for outputs that are aligned with human notions of design quality, as quantified via 0. This suggests that the approach can generalize to a range of real-world poster design scenarios with minimal loss in content fidelity.
6. Applicability and Deployment
DreamPoster supports diverse forms of poster generation, including various compositional subtasks. The framework’s capacity for high-resolution, professional-quality outputs and high expert/user satisfaction underpins its deployment in production, notably in Bytedance’s Jimeng and other applications. The systematic annotation pipeline and progressive curriculum are directly transferable to related conditional image generation domains, particularly those demanding compositional control and aesthetic optimization (Hu et al., 6 Jul 2025).