Export Options Reference
Complete reference for all export configuration options.
Format Selection
PNG
Standard raster format with transparency.
Output: individual PNG files
Transparency: preserved
Quality: lossless
SVG
Vector format (converted via tracing).
Output: individual SVG files
Scalability: infinite
Best for: simple, flat graphics
PSD
Layered Photoshop format.
Output: single PSD file with all layers
Layers: preserved separately
Compatibility: Photoshop, GIMP, Affinity
Content Selection
Choose what to include in the export:
| Content | Default | Description |
|---|---|---|
| Combinations | Yes | Final composite images |
| Layers | No | Individual transparent layers |
| Masks | No | Trait masks (black/white) |
| Base images | No | Original generated images |
Crop to Content
When enabled:
- Trims transparent edges from each image
- Reduces file size
- Removes empty space around subjects
When disabled:
- Images keep original dimensions
- All images are same size
- More padding around subjects
Recommended: Enable for web use, disable if you need consistent dimensions.
Use Display Names
When enabled:
final_eyes_v0_hat_v2.png
layer_eyes_orig.png
mask_eyes_v1.png
When disabled:
a1b2c3d4-e5f6-7890-abcd-ef1234567890.png
Recommended: Enable for human-readable filenames.
Include Metadata
When enabled, exports include metadata.json:
{
"project": "my-project",
"exported_at": "2024-01-15T10:30:00Z",
"combinations": [
{
"filename": "final_eyes_v0_hat_v2.png",
"layers": {
"eyes": "original",
"hat": "variation_2"
}
}
],
"traits": ["eyes", "hat"],
"layer_order": ["eyes", "hat"]
}
Useful for:
- NFT projects (on-chain metadata)
- Tracking layer composition
- Automation scripts
File Structure
Exported ZIP contents:
project-name-export/
├── combinations/
│ ├── final_eyes_v0_hat_v1.png
│ ├── final_eyes_v0_hat_v2.png
│ └── ...
├── layers/ (if included)
│ ├── layer_eyes_orig.png
│ ├── layer_eyes_p0.png
│ └── ...
├── masks/ (if included)
│ ├── mask_eyes_v1.png
│ └── ...
├── base/ (if included)
│ ├── base_1.png
│ └── ...
└── metadata.json (if included)
Filename Patterns
Combinations
final_{layer_codes}.{ext}
Examples:
final_eyes_v0_hat_v2.png- Original eyes + hat variation 2final_a_v1_b_v0_c_v3.png- Trait a var1 + trait b orig + trait c var3
Layers
layer_{trait}_{source}.{ext}
Examples:
layer_eyes_orig.png- Original layerlayer_eyes_p0.png- Variation prompt 0layer_hat_p2.png- Variation prompt 2
Masks
mask_{trait}_v{version}.{ext}
Examples:
mask_eyes_v1.png- Eyes mask version 1mask_hat_v3.png- Hat mask version 3
Base Images
base_{slot}.{ext}
Examples:
base_1.png- First base image slotbase_3.png- Third base image slot
Export Cost
Export costs 1 Mana per 100 files:
| Files | Cost |
|---|---|
| 1-100 | 1 Mana |
| 101-200 | 2 Mana |
| 500 | 5 Mana |
| 1,000 | 10 Mana |
The estimate is shown before you export.
Tips
- Start with PNG - Most compatible format
- Enable crop - Smaller files for web use
- Include metadata - Essential for NFT projects
- Use display names - Easier to identify files
- Check file count - Large exports take time and Mana