How to Convert CBZ to JPG (Extract Comic Pages, 2026 Guide)
Extract every page of a CBZ comic as a JPG image. Free desktop, command-line, and web methods for editing, reordering, or sharing single pages.
Posted by

Want to extract JPG pages from your CBZ right now?
Use our free single-file CBZ to JPG web demo. It runs locally on your device, so your file never leaves your computer. No uploads, no signup.
Or read the full walkthrough below.
Sometimes you want the individual page images out of a CBZ rather than the archive itself. Maybe you want to reorder pages, edit one in Photoshop, share a single page on social media, or rebuild the comic with extra metadata. Converting CBZ to JPG gives you each page as a standalone image file.
Since CBZ is just a renamed ZIP, the conversion is essentially extraction. The challenge is mostly about handling pages that are already JPG (passed through unchanged) versus pages that are PNG or another format inside the CBZ (re-encoded to JPG).
Watch: Comic format conversion in How to Convert
Method 1: How to Convert (Easiest, Local, Cross-Platform)
How to Convert extracts CBZ pages as JPGs locally. Drop the CBZ in, pick JPG, click Convert. The result is a folder of numbered JPG files, one per page.
Steps
- Open How to Convert (desktop or browser).
- Drag your CBZ onto the window.
- Pick JPG as the output format.
- Click Convert. The pages save as numbered JPGs.
How to Convert
The offline file converter for Mac, Windows and Linux.
- Converts video, audio, images, documents, ebooks and more
- Everything runs locally. Your files never leave your device
- Pay once. Access forever
Get the app on Mac, Windows and Linux
Method 2: Command Line (Just Use unzip)
If the pages inside your CBZ are already JPG, the simplest method is to extract the archive directly:
unzip input.cbz -d pages/
That gives you a folder of JPG pages with the original quality preserved. If the pages are PNG and you want them as JPG, convert with ImageMagick after extraction:
unzip input.cbz -d pages/ cd pages && magick mogrify -format jpg *.png
Frequently Asked Questions
Will image quality drop?
If the pages inside the CBZ are already JPG, no. They are extracted byte-for-byte. If the pages are PNG and you re-encode to JPG, there is some quality loss because JPG is lossy. Use a high quality setting (90+) to keep loss minimal.
How do I keep page reading order?
Most CBZ files name pages with sequential numbers (page001.jpg, page002.jpg). Sort the extracted files alphabetically and they appear in correct reading order.
Can I extract specific pages instead of all of them?
Yes, with unzip on the command line: unzip input.cbz "page005.jpg" extracts just that file. Most GUI tools extract everything; you can then delete what you do not need.
Final Thoughts
For one-off extractions, our free single-file CBZ to JPG web demo is the fastest. For batches or when you want a Finder-friendly extraction, the desktop app handles as many CBZ files as you select. For shell scripting, plain unzip with optional ImageMagick re-encoding gives you the most control.
How to Convert
The offline file converter for Mac, Windows and Linux.
- Converts video, audio, images, documents, ebooks and more
- Everything runs locally. Your files never leave your device
- Pay once. Access forever
Get the app on Mac, Windows and Linux