I am unable to write files to the folder and save to photo gallery.
Ti.UI.setBackgroundColor('#fff'); var win=Ti.UI.createWindow({ backgroundColor:'#fff' }); var imageView=Ti.UI.createImageView({ image:'KS_nav_ui.png', //backgroundColor:'white' }); win.add(imageView); var image = imageView.toImage(); var newDir = Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory,'test'); var newFile = Titanium.Filesystem.getFile(newDir.nativePath,'img.png'); newFile.write(image.media); Ti.Media.Android.scanMediaFiles([newFile.nativePath], null, function(e){}); win.open();