我尝试用这种方式裁剪图像
var crop = new Kinetic.Image({
image: img ,
x: 100, y: 100, width: 100, heigth: 100,
crop : {
x: 0, y: 0, width: 100, heigth: 100
}
});
在http://jsfiddle.net/cm5jj/中看到它不起作用
然后我尝试用图像填充矩形
var rect = new Kinetic.Rect({
x: 100,
y: 100,
width: 100,
height: 100,
fill:{
image: img,
crop:{
x: 0,
y: 0,
width: 100,
height: 100
},
}
});
仍然无法工作http://jsfiddle.net/cm5jj/1/
请帮忙。
非常感谢。