crop_image
Zoom into a region of a cached image via a normalized 0..1 bounding box to inspect fine details such as faces, edges, or fillets. Returns a new image for closer analysis.
Instructions
Zoom into a region of a cached image by normalized 0..1 bounding box. Use after render_* when you need to inspect a detail — a specific face, a feature edge, a suspicious fillet. (0,0) is top-left, (1,1) is bottom-right. Returns a new image keyed by its own image_id. This is the pattern behind Anthropic's CharXiv 84.7 -> 91.0% 'with tools' benchmark result; use it liberally.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x1 | Yes | Left edge (0..1) | |
| x2 | Yes | Right edge (0..1), must be > x1 | |
| y1 | Yes | Top edge (0..1) | |
| y2 | Yes | Bottom edge (0..1), must be > y1 | |
| imageId | Yes | image_id from a previous render_* or crop_image call |