0
我想爲Galaxy Tab製作應用程序,它允許我繪製圖片...類似於MS Paint的東西(不要問我爲什麼:))所以第一步是:如何使用appcelerator鈦手機在圖像上繪製線
win = Ti.UI.createWindow({
backgroundColor: 'black',
exitOnClose: true
});
image = Ti.UI.createImageView({
width: 200,
height: 200
});
image.addEventListener('touchmove', function(e){
//And here I need somehow to draw a pixel on image at e.x, e.y coordinates
// How can i do it?
});
那麼,我該如何畫一個像素?
對不起,但你到底在哪裏繪製imageView像素?我認爲這個例子可以用作拖放式的例子,我的問題是關於如何在我觸摸它時在圖像視圖上繪製像素...但是,無論如何,謝謝。 – Alex