This is first time I use SVG to make transparent areas on thr picture(marked red) and probably I have very naive question, I wrote this code according to this answer and all elements are closed with />
as noted in this answer.
The problem is its not work, because with my points the polygon elements are working as "XOR", how ca do the polygon elements "AND"?
<img src="https://i.stack.imgur.com/iZ7xG.jpg" style="clip-path: url(#myClip);">
<svg width="0" height="0" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="myClip" clipPathUnits="objectBoundingBox">
<polygon points="0 0, 0 1, .54 .99, .5682 .156, .746 .151, .7397 .557, .51 .508, .54 .99, 1 1, 1 0" />
<polygon points="0 0, 0 1, .737 1, .747 .321, .816 .321, .81 .666, .74 .645, .74 1, 1 1, 1 0" />
/* It doesn't work, but if delete one of them so its work with only one polygon */
</clipPath>
</defs>
</svg>