plot-from-image
Installation
SKILL.md
Plot From Image
Reproduce a paper figure by analyzing the image and leveraging accumulated style knowledge.
Workflow
1. Measure Proportions
python3 -c "from PIL import Image; img=Image.open('fig.png'); print(img.size, f'AR={img.size[0]/img.size[1]:.2f}')"
Set figsize=(FW, FH) so FW/FH matches the original AR exactly.
2. Match to Existing Style
Check if the figure matches a pre-built style (fastest path):
Related skills