I am trying to read a .PNG file using Titanium 1.8.1 Here is my code to read file.

var f = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, 'KS_nav_views.png');
var blob = f.read();

When I create a new file using the above blob object, the new file thus created is not same as the original file. Here is my code to create the new file.

var outputDir = Titanium.Filesystem.getFile(Titanium.Filesystem.externalStorageDirectory,'output');
outputDir.createDirectory();
var newFile = Titanium.Filesystem.getFile(outputDir.nativePath,'outFile.png');
var test = newFile.write(blob);
if ( test === false){
      Ti.API.debug("Write Error");
}
Ti.API.debug("Write complete? "  + test);

The outFile.png gets created but the problem is that It is not a valid image file. Also the size of the file is around 53 bytes, whereas my input file was 1kb.

The same code works fine if we use a simple text file as input and try to create duplicate output file.

link|improve this question

25% accept rate
feedback

1 Answer

You need to close the file once you finished writing.

test.close();
link|improve this answer
Hi bsavas, test is a boolean not file object. also Titanium has no such method called close on file object. – vaibhav Feb 23 at 11:18
I see. Sorry, I thought It was file-stream. Maybe you should give it a try with FileStream object. developer.appcelerator.com/blog/2011/05/… – bsavas Feb 24 at 9:57
tried, no luck :( – vaibhav Feb 24 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.