我有一个使用钛实现的图像,我想知道是否有任何方法可以在钛中实现图像的剪辑属性。
问问题
529 次
1 回答
1
是的,您可以使用Titanium.Blob.imageAsCropped函数裁剪图像。
例如:
// Load your image from the file system
var imagefile = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, "yourimage.png");
var imageBlob = imagefile.read();
// Crop it as you like
var croppedImage = blob.imageAsCropped({x : 20, y : 20, width : 100, height : 100});
// Stick it in an image view
var imageView = Ti.UI.createImageView({
image : croppedImage,
... other attributes ...
});
// Do what you want to it...
于 2013-06-22T16:42:01.193 回答