Published 22 August 2026 · 6 min read
If you read comics or manga on a tablet or e-reader, you will eventually hit a PDF that behaves badly — it will not fit the screen, page turns are slow, and double-page spreads split down the middle. Converting to CBZ usually fixes it. Understanding why explains when it will not.
A CBZ file is a ZIP archive of images, renamed. That is the entire specification. There is no page layout, no text layer, no embedded fonts, no scripting — just pictures in a defined order, which a comic reader displays one after another.
That simplicity is the point. A PDF is a general-purpose document format that has to support text flow, vector graphics, forms, annotations and colour management. For a page that is a single scanned image, all that machinery is overhead a reader has to work through before it can draw anything.
Convert when your PDF is a scanned or image-based comic and you read it in a dedicated reader. That is the case the format exists for, and the improvement is immediate. PDF to CBZ extracts each page as an image and packages them in order.
The rule of thumb: if each PDF page is essentially one picture, CBZ is better. If the pages contain real text, PDF is better.
Because CBZ has no page structure, the reader determines order by sorting filenames. Almost every broken CBZ is a sorting problem.
Files named page1 to page100 sort as 1, 10, 100, 11, 12 — so page 100 appears third. Correct conversion pads the numbers (page001, page002) so alphabetical order matches reading order. Check the first twenty pages after any conversion; if the order is wrong, it will be wrong in a predictable, obvious way.
Conversion renders each PDF page to an image, so you choose the resolution:
Manga lettering is often small, so err upward — 300 rather than 150 — if you plan to reread it.
CBR is the same idea using RAR instead of ZIP. CBZ is preferable: ZIP is an open format supported everywhere, and RAR is proprietary. If you are creating a file, create CBZ.
If you want the images without the comic wrapper — for editing, or for a reader that takes a folder — PDF to images or PDF to ZIP give you the same pages in a plainer package.
Personal comic archives are often self-scanned or otherwise not something people want to hand to an upload service. Conversion is also bandwidth-heavy — a 200MB comic uploaded and downloaded again is a slow round trip. Converting locally avoids both, and there is no upload wait at all: the work happens on your machine.
PDF to CBZ — runs in your browser, nothing is uploaded.
A ZIP archive containing the pages of a comic as image files, with a different extension. Comic readers display the images in filename order. There is no text layer, no layout and no annotations — just pages.
For image-based comics read in a dedicated reader, yes: faster page turns, correct screen fitting, spread detection and right-to-left support for manga. For documents with real text, PDF is better because CBZ cannot store text at all.
Readers sort by filename, and unpadded numbers sort alphabetically — page1, page10, page100, page11. Correct conversion zero-pads the numbers so alphabetical order matches reading order.
300 DPI suits most tablets and e-readers and keeps small lettering legible. 150 DPI is fine for phones and produces much smaller files. 600 DPI is only worth it for archival copies.
The archive format inside — ZIP for CBZ, RAR for CBR. Readers support both, but CBZ is preferable when creating files because ZIP is an open, universally supported format.