将矩形水平缩放2倍,垂直缩放0.5倍:
<svg xmlns="http://www.w3.org/2000/svg"> <rect x="10" y="10" width="40" height="40" transform="scale(2, 0.5)" /> </svg>
结果等于
<svg xmlns="http://www.w3.org/2000/svg"> <rect x="20" y="5" width="80" height="20" /> </svg>
水平镜像矩形:
<svg xmlns="http://www.w3.org/2000/svg"> <rect x="0" y="0" width="20" height="40" transform="scale(-1, 1)" /> </svg>
比例尺确实相对于原点起作用,所以这等效于
<svg xmlns="http://www.w3.org/2000/svg"> <rect x="-20" y="0" width="20" height="40" /> </svg>