Agent Skills
Id Photo Tool
AIPOCH
Replace an ID photo background color (blue/white/red) and/or add a configurable text watermark when you need compliant ID-photo variants from local JPG/PNG files.
2
0
FILES
87100Total Score
View Evaluation ReportCore Capability
78 / 100
Functional Suitability
10 / 12
Reliability
9 / 12
Performance & Context
8 / 8
Agent Usability
12 / 16
Human Usability
7 / 8
Security
9 / 12
Maintainability
8 / 12
Agent-Specific
15 / 20
Medical Task
20 / 20 Passed
98You need to convert an ID photo background to a required solid color (blue/white/red) for official submissions
4/4
94You need to add a visible “for application only” style watermark to prevent misuse of shared ID photos
4/4
92Background color replacement for ID photos:
4/4
92Supported target colors: blue, white, red
4/4
92End-to-end case for Background color replacement for ID photos:
4/4
SKILL.md
When to Use
- You need to convert an ID photo background to a required solid color (blue/white/red) for official submissions.
- You need to add a visible “for application only” style watermark to prevent misuse of shared ID photos.
- You need to batch-generate multiple variants while keeping the original image unchanged (explicit output path).
- You need an offline, local-only tool (no network access) for processing sensitive personal images.
Key Features
- Background color replacement for ID photos:
- Supported target colors:
blue,white,red - Detects the dominant background color using edge pixels and replaces it using color-distance matching
- Supported target colors:
- Text watermark overlay:
- Supported positions: top-left, top-right, bottom-left, bottom-right, center
- Configurable opacity, font size, and font color
- Input/output constraints:
- Supports
JPGandPNGonly - Output keeps the same format as the input
- Does not overwrite the original file (output path must be provided)
- Supports
- Local processing only:
- Reads only from user-provided input paths and writes only to user-provided output paths
Dependencies
- Python 3.x
- pillow (PIL) — version not pinned
- numpy — version not pinned
Install:
python -m pip install pillow numpy
Example Usage
Background color replacement (JPG):
python scripts/id_photo_tool.py change-bg \
--input input.jpg \
--output output.jpg \
--color blue
Background color replacement (PNG):
python scripts/id_photo_tool.py change-bg \
--input input.png \
--output output.png \
--color white
Add a text watermark:
python scripts/id_photo_tool.py add-watermark \
--input input.jpg \
--output watermarked.jpg \
--text "For application use only"
Implementation Details
Background Color Replacement
- Background sampling: The tool estimates the original background color by sampling pixels along the image edges (where background is most likely present).
- Color-distance based replacement: Pixels close to the estimated background color (by color distance) are treated as background and replaced with the selected target color.
- Supported target colors:
bluewhitered
Text Watermark
- Placement: One of five positions is supported: top-left, top-right, bottom-left, bottom-right, center.
- Rendering parameters:
- Opacity controls watermark transparency.
- Font size controls text scale.
- Font color controls text color.
- Output behavior: The watermark is composited onto the image and saved to the specified output path without modifying the original input file.
Security / Compliance Notes
- No network access is used; all processing is performed locally.
- The script only accesses file paths explicitly provided via CLI arguments.
- The tool requires an explicit output path and does not overwrite the original file by default.