Android Canvas缩放(Scale)
2020-12-24 本文已影响0人
陈大吼
Canvas缩放有以下两个方法:
public void scale (float sx, float sy) ;//以(0,0)为中心点,将画布长宽分别变为原来的sx/sy倍
public final void scale (float sx, float sy, float px, float py); //以(px,py)为中心点,将画布长宽分别变为原来的sx/sy倍
分析一下第二个方法的实现
/**
* Preconcat the current matrix with the specified scale.
*
* @param sx The amount to scale in X
* @param sy The amount to scale in Y
* @param px The x-coord for the pivot point (unchanged by the scale)
* @param py The y-coord for the pivot point (unchanged by the scale)
*/
public final void scale(float sx, float sy, float px, float py) {
translate(px, py);
scale(sx, sy);
translate(-px, -py);
}
其中translate(-px, -py);貌似和translate(px, py);抵消了,这样和直接调用scale(sx, sy);为何效果不一样呢?
是因为:第一步translate(px, py)移动的物理距离是px和py,经过scale(sx, sy)缩放后再通过translate(-px, -py)位移,移动的物理距离实际是-pxsx和-pysy,并未抵消。
具体参考:
https://www.it610.com/article/1294311483022319616.htm
https://blog.csdn.net/zhjin8510/article/details/100533755