我正在嘗試使用 SVG 路徑剪輯圖像,但我的圖像似乎不太適合。
這就是我想要實現的目標:
這就是我得到的:
這是我嘗試過的程式碼:
.topbar-chat-img { width: 48px; height: 48px; object-fit: cover; clip-path: url(#topbar-img-svg); }
<img src="https://picsum.photos/200/200?image=1069" class="topbar-chat-img" /> <svg> <defs> <clipPath id="topbar-img-svg"> <path class="svg-cls" d="M33,66A33.009,33.009,0,0,1,20.155,2.593,32.99,32.99,0,0,1,66,33a32.691,32.691,0,0,1-3.271,14.341,11.008,11.008,0,0,0-13.148,14.2A32.978,32.978,0,0,1,33,66Z"/> </clipPath> </defs> </svg>
我還嘗試更改 vievBox 和 svg 的大小,但我無法適應圖像。
這是使用 SVG 的另一種更簡單的方法: