Perspectives

3D perspective transforms, no browser required

Apply tilt-left, tilt-right, tilt-up, tilt-down, or isometric perspectives to any screenshot or browser frame. Transforms are computed server-side via 2D homography — no WebGL, no client rendering. Control intensity from 0 to 100.

All perspective presets

  • tilt-left — moderate left tilt with rotation, common on SaaS landing pages.
  • tilt-right — moderate right tilt with rotation, common for product showcases.
  • tilt-up — upward tilt with foreshortening, used for dashboard overviews.
  • tilt-down — downward tilt with foreshortening, used for hero sections.
  • tilt-left-strong / tilt-right-strong — stronger tilt with depth, used in hero sections.
  • iso-left / iso-right — isometric perspective with strong foreshortening, used for product cards and app showcases.

API example

Browser chrome with strong right perspective

curl -X POST https://screenframed.com/v1/capture \
  -H "Authorization: Bearer sf_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-app.com",
    "device": "browser-macos",
    "perspective": "tilt-right-strong",
    "perspective_intensity": 70,
    "background_preset": "midnight",
    "shadow": "float",
    "padding": 100
  }'