图像基于钛appcelerator视图中的base64

时间:2013-07-18 16:15:51

标签: titanium base64 titanium-alloy

我想从SQLite中放一个图像,但下面的代码不起作用:

var imageView = Ti.UI.createImageView({
            image:services.fieldByName('image')
});

1 个答案:

答案 0 :(得分:7)

执行此操作以在保存之前将blob转换为字符串

var stringToSaveInDatabase = Ti.Utils.base64encode(thumbBlob).toString();

当您准备将其添加到视图中时,请执行此操作

var imageBlob = Ti.Utils.base64decode(stringRetrievedFromDatabase);
Ti.UI.createImageView({ image:imageBlob });

http://docs.appcelerator.com/titanium/3.0/#!/api/Titanium.Utils-method-base64encode