Me2Comic is a macOS GUI tool that calls GraphicsMagick to batch convert and crop images, prioritizing quality while reducing file size. It started as a weekend side project for processing comic images and experimenting with Swift. Now it's open-sourced under the MIT license—feel free to explore, tweak it, or just take a look. 🍻
• Batch convert JPG/JPEG/PNG → JPG
• Auto-split oversize images (right priority)
• Parameter controls
• Multi-threading
• Task logs
• 简体中文 | 繁體中文 | English | 日本語
- macOS 14.0+
- Swift 6
- GraphicsMagick:
brew install graphicsmagickTwo input modes are supported:
Each first-level subdirectory is processed as an independent batch.
Input
/Volumes/Comics/ToProcess/
├── CITY HUNTER Vol.xx/
│ ├── page001.jpg
│ └── page002.jpg ...
├── One Piece Vol.xx/
│ └── ...
└── Comic 3/
└── ...
Output
/Volumes/Comics/Done/
├── CITY HUNTER Vol.xx/
│ ├── CITY.HUNTER.CE.1-1.jpg (split right half, if oversized)
│ ├── CITY.HUNTER.CE.1-2.jpg (split left half)
│ └── CITY.HUNTER.CE.2.jpg (direct convert, if not oversized)
├── One Piece Vol.xx/
│ └── ...
└── Comic 3/
└── ...
If the selected directory itself contains image files, all images are processed as one batch. Any subdirectories are ignored.
Input
/Volumes/Comics/CITY HUNTER Vol.xx/ ├── page001.jpg ├── page002.jpg └── page003.jpg ...
Output
/Volumes/Comics/Done/ ├── page001-1.jpg (split right half, if oversized) ├── page001-2.jpg (split left half) ├── page002.jpg (direct convert, if not oversized) └── ...
Gather the seven Dragon Balls ➔ Actions ➔ 🐉 SHENRON! Grant my wish! ✨ ➔ Summon the Eternal Dragon Run workflow
(Note: Wait time depends on Shenron's cosmic mood 🌌✨)
※ App icon adapted from Mucha's Zodiac, build names honor his legacy. No official affiliation.


