將SVG image
映射到html。我們如何計算旋轉圖像的正確x和y值?
圖片在Inkscape的旋轉逆時針50度:
<image
y="178.3712"
x="-212.40982"
id="image3002"
xlink:href="..path"
height="369"
width="360"
transform="matrix(0.64278761,-0.76604444,0.76604444,0.64278761,0,0)" />
計算X & Y,according to this mathematical logic:
X = -212.40982, Y = 178.3712
x = X * 0.64278761 - Y * 0.76604444;
y = X * 0.76604444 + Y * 0.64278761;
當我在HTML中的圖像映射計算x和y後,它看起來:
現在可以請任何人幫助我,並請解釋我最近出了什麼問題?