Introduction
This guide shows how to download DC and Marvel comics, convert them to a readable format, and open them in the Windows/iOS Books app. It’s easy with the right tools and only takes a few steps.
Simplified One-Line Flowchart
Find comic âž” Convert to PDF âž” Transfer to Books app
Easy Step-by-Step Method
Step 1: Download the comic files
- Visit a site like GetComics or LibGen to find
.CBRor.CBZformat comics.
Step 2: Extract the images
- Use a file extraction tool like The Unarchiver (macOS) or 7-Zip (Windows) to unzip
.CBRor.CBZfiles. - You’ll get a folder with image files (usually JPEGs or PNGs).
Step 3: Convert images to a single PDF
- On macOS: Select all images → Right-click → “Create PDF”.
- On Windows: Use a tool like PDF Creator or IrfanView with the image-to-PDF feature.
-
- Then run the command:
"C:\Program Files\IrfanView\i_view64.exe" *.jpg /multipage=output.pdf
- Or use the batch conversion feature to select images and export them to a single PDF.
Step 4: Transfer the PDF to your iOS device
- Use AirDrop, iCloud Drive, or email to send the PDF to your iPhone or iPad.
- Tap the file and choose “Open in Books” to import it to the app.
Automate Comic File Conversion to PDF on Windows
On Windows, you can automate the conversion of comic book files (.CBR and .CBZ) to PDF using free tools and a simple batch script. This saves time and keeps your workflow clean.
Easy Step-by-Step Method
Step 1: Install the required tools
- Download and install:
Step 2: Add IrfanView to system PATH
- Optional but recommended. This allows you to run
i_view64.exefrom any folder in Command Prompt.
Step 3: Create a batch script
- Open Notepad and paste:
```batch
@echo off
setlocal enabledelayedexpansion
set "filename=%~n1"
mkdir "%filename%"
"C:\Program Files\7-Zip\7z.exe" x "%~1" -o"%filename%"
"C:\Program Files\IrfanView\i_view64.exe" "%filename%\*.jpg" /multipage="%filename%.pdf"
echo Done: %filename%.pdf
pause
Quick Tips (Optional)
- Some users recommend Chunky Reader for CBZ/CBR formats instead of converting to PDF.
- For bulk conversion, apps like ComicRack (Windows) or YACReader (macOS/iOS) can help manage libraries.
- You can create a simple batch file in Windows to automate extraction and conversion.
@echo off
set filename=%~n1
mkdir "%filename%"
"C:\Program Files\7-Zip\7z.exe" x "%~1" -o"%filename%"
"C:\Program Files\IrfanView\i_view64.exe" "%filename%\*.jpg" /multipage="%filename%.pdf"
Important Notes
- The iOS Books app supports only PDF and EPUB formats—CBR/CBZ won’t open natively.
- Make sure to scan files for malware, especially when downloading from less reputable sources.
ENJOY & HAPPY LEARNING! 
Appreciate the share, Don’t be cheap!
!