clipPath

Other topics

Clipping to a circle path

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <clipPath id="circleClip">
      <circle cx="50" cy="60" r="20" />
    </clipPath>
  </defs>
  <image width="100" height="100" style="clip-path:url(#circleClip)" xlink:href="https://cdn.sstatic.net/Sites/stackoverflow/company/img/logos/so/so-icon.png" />
</svg>
Original logoLogo after clipping
logologo after clipping

Parameters:

ParameterDescription
clipPathUnitsthe coordinate system of the pattern contents either objectBoundingBox or userSpaceOnUse

Contributors

Topic Id: 4840

Example Ids: 17058

This site is not affiliated with any of the contributors.