← toolkit.bot

EPUB vs CBZ/CBR for Comics: Which Format Is Better?

June 12, 2026  ·  6 min read

Comics and manga exist in two main digital formats: EPUB (with fixed-layout) and the CBZ/CBR archive formats. Each has strengths. Here's how they compare and how to convert between them.

CBZ and CBR Explained

CBZ is a ZIP archive containing sequential image files (JPEG or PNG, named in order). CBR is the same concept using RAR compression. Most modern comic readers use CBZ — CBR requires RAR support which is less universally available.

comic.cbz (ZIP archive)
├── 001.jpg
├── 002.jpg
├── 003.jpg
└── ...

# CBZ is literally just a renamed .zip
unzip comic.cbz -d comic_pages/

Format Comparison

FeatureEPUB (Fixed-Layout)CBZ/CBR
Metadata (title, author, series)Rich (OPF Dublin Core)None (filename only) / ComicInfo.xml
Text accessibilityPossible with overlay textNo (images only)
Two-page spreadsYes (rendition:spread)Yes (reader-dependent)
Reader supportApple Books, Kindle, KoboDedicated comic apps (Comixology, Panels, Chunky)
File sizeSimilar (ZIP-based)Similar (ZIP-based)
Page order controlVia spineAlphabetical/numerical filename sort
DRMADE, Kindle DRMTypically DRM-free
Distribution (KDP, Kobo, Apple)YesNo — not accepted by major stores

Converting CBZ to EPUB

To distribute a comic through major e-book stores, convert CBZ to fixed-layout EPUB:

# Using Calibre
ebook-convert comic.cbz comic.epub   --output-profile tablet   --comic-image-size 1200x1600

# Using KCC (Kindle Comic Converter) — also creates CBZ and AZW3
kcc-c2e comic.cbz -o output/ --profile KPW5 --manga-style

KCC (Kindle Comic Converter) is the most popular tool for manga/comic conversion — it optimises images for specific device profiles (Kindle, Kobo, tablet) and handles right-to-left manga page order correctly.

Converting EPUB to CBZ

# Extract EPUB images and repack as CBZ
unzip book.epub -d extracted/
# Find all images
find extracted/ -name "*.jpg" -o -name "*.png" | sort |   zip comic.cbz -@

This is useful if you want to read an EPUB in a comic-specific app that only accepts CBZ. Note that text layers, metadata, and styling are lost in this conversion.

Manga-Specific Considerations

Which Format Should You Use?

Convert PDF to EPUB for e-reader distribution →