我有关于同时操作变焦和同时旋转图像的查询.... 实际上我想使用TransformGestureEvent
在as3中应用旋转和缩放图像答案 0 :(得分:0)
您应该使用Matrix class。从this post创建变体:
function rotateAndZoom (
ob:*,
angleDegrees:Number,
zoomAmt:Number,
ptRotationPoint:Point
) {
var m:Matrix = ob.transform.matrix;
m.tx -= ptRotationPoint.x;
m.ty -= ptRotationPoint.y;
m.rotate (angleDegrees*(Math.PI/180));
m.scale(zoomAmt, zoomAmt);
m.tx += ptRotationPoint.x;
m.ty += ptRotationPoint.y;
ob.transform.matrix = m;
}
如果这可以解决问题,请告诉我。
答案 1 :(得分:0)
检查手势识别库,类似于Apple的UIGestureRecognizers https://github.com/fljot/Gestouch/tree/develop