A Python desktop application for viewing character cards stored as PNG files with embedded EXIF metadata. Character card information is typically stored as Base64-encoded JSON in PNG EXIF data, which makes it difficult to browse and view. This application provides a user-friendly interface to view thumbnails and character information.
You can have large thumbnails:
For Windows users: Download the standalone CharCardView.exe from Releases — no installation required.
- Thumbnail Grid View: Browse character cards in a scrollable grid with thumbnails
- Character Information Display: View detailed character data including name, description, personality, scenario, and greetings
- Resizable Interface: Adjustable splitter between thumbnail grid and data panel (default 75/25)
- Thumbnail Size Control: Adjustable thumbnail size with persistent settings
- Alternate Greetings Navigation: Navigate through multiple greeting messages with arrow controls
- Sorted Display: Thumbnails automatically sorted by character name
- Async Processing: Non-blocking EXIF extraction for smooth UI experience
- Python 3.12 or later
- exiftool (will be checked/installed by install.bat)
- Windows (batch scripts provided for Windows)
Download CharCardView.exe from Releases and run it directly. No Python or dependencies required.
-
Run the installation script:
install.bat
This script will:
- Check for exiftool in PATH
- Check for
uvpackage manager (falls back topipif not available) - Create a virtual environment (skipped if active conda env is detected)
- Install required dependencies (PySide6, Pillow)
- Download exiftool if missing
-
(Optional) Manual installation:
- Create venv
- Install Requirements
- Make sure exiftool.exe is in path or download it to exiftool/
-
Start the application:
start.bat
or activate venv and run with
python main.py -
Select a folder:
- Click
File → Select Folder...(or pressCtrl+O) - Choose a directory containing PNG character card files
- Click
-
Browse character cards:
- Click on any thumbnail to view its character information
- Use the thumbnail size slider in the toolbar to adjust thumbnail size
- Use arrow buttons in the greeting section to navigate through alternate greetings
-
Adjust the interface:
- Drag the splitter between thumbnails and data panel to resize
- Adjust thumbnail size using the slider in the toolbar
- Settings are automatically saved
The application supports character cards in the chara_card_v2 and chara_card_v3 format with the following structure:
- EXIF Tags:
chara(primary) orCcv3(fallback) - Data Format: Base64-encoded JSON
- Required Fields: name, description, personality, scenario, first_mes
- Optional Fields: alternate_greetings (array of strings)
CharCardView/
├── main.py # Application entry point
├── pyproject.toml # Project configuration
├── requirements.txt # Python dependencies (for pip fallback)
├── install.bat # Installation script
├── start.bat # Launch script
├── app/
│ ├── gui/ # GUI components
│ │ ├── main_window.py # Main window
│ │ ├── thumbnail_grid.py # Thumbnail grid widget
│ │ └── data_panel.py # Character data display
│ ├── core/ # Core business logic
│ │ ├── exif_extractor.py # EXIF data extraction
│ │ ├── card_parser.py # JSON parsing
│ │ └── settings_manager.py # Settings persistence
│ ├── models/ # Data models
│ │ └── character_card.py # Character card model
│ └── utils/ # Utilities
│ └── image_utils.py # Thumbnail generation
├── exiftool/ # exiftool binary (optional)
└── images/
├── icon.ico # Icon
├── icon.png # Icon
└── main.png # UI
Ctrl+O: Select folderCtrl+Q: Exit application
exiftool not found:
- Ensure exiftool is installed and in PATH, or
- Place
exiftool.exein theexiftool\directory
No character cards displayed:
- Verify PNG files contain valid EXIF data with
charaorCcv3tags - Check that files are in the selected directory
Application won't start:
- Ensure Python 3.12+ is installed
- Run
install.batto set up dependencies - Check that virtual environment was created successfully
This project is provided as-is for personal use.
- PySide6: GUI framework
- Pillow: Image processing and thumbnail generation
- exiftool: EXIF metadata extraction (external tool)

