我在上面有两张图像,我想从顶部图像中删除一小部分以显示背景图像。是否可以在 iOS 上使用钛进行透明擦除?
谢谢和问候, GANESH M
我在上面有两张图像,我想从顶部图像中删除一小部分以显示背景图像。是否可以在 iOS 上使用钛进行透明擦除?
谢谢和问候, GANESH M
您可以使用ti.paint 模块执行此操作。具体来说,它能够在画布上拥有可以擦除的图像。安装后,试试这个:
// Container window
var win = Ti.UI.createWindow({ backgroundColor: '#fff' });
// Background image
var backgroundImage = Ti.UI.createImageView({
image : 'yourbgimage.png'
width : Ti.UI.FILL,
height : Ti.UI.FILL
});
// Require paint module and add to view with an erasable image
var Paint = require('ti.paint');
var paintView = Paint.createPaintView({
image : 'yourfgimage.png', // This is the image you erase
eraseMode : true,
width : Ti.UI.FILL,
height : Ti.UI.FILL,
strokeColor : '#0f0', strokeAlpha : 255, strokeWidth : 10
});
win.add(backgroundImage);
win.add(paintView);
win.open();