Aspect Ratio Calculator
Lock in an aspect ratio and compute missing width or height — for video, images, or layouts.
Ratio
:→ 1.7778
Set ratio 16:9
1920 × 1080
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/aspect-ratio-calculator/run \
-H "Content-Type: application/json" \
-d '{
"ratioW": 1,
"ratioH": 1
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/aspect-ratio-calculator/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"ratioW": 1,
"ratioH": 1
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_aspect_ratio_calculatorFull reference: developer docs · OpenAPI spec
You might also like
- Color Blindness SimulatorPreview an image or hex color through the four most common color-vision deficiencies.
- Palette Generator from ImageExtract the dominant colors from any image — for design systems, moodboards, or theming.
- Image CropperCrop, rotate, and resize an image in your browser — drag the selection box, pick a preset aspect ratio, and download.
- Image ResizerResize images to any dimensions or percentage, with optional aspect-ratio lock.