我正在尝试在 Titanium webView 中显示图像,这是我使用 showCamera 函数拍摄的。
图像未正确旋转。如果我以纵向模式拍摄照片,它总是以横向模式出现。
这只发生在 3.0.2 及更高版本中。当我正在开发一个跨平台应用程序时,使用 2 个不同的 Titanium 版本是非常不可取的。在 iOs 上一切正常。
Titanium.Media.showCamera 成功回调,coffeescript
imageFile = event.media
imageAsTaken = Ti.UI.createImageView
image : imageFile,
autorotate : true
if Ti.Platform.osname isnt 'android'
imageFile = imageAsTaken.toImage()
else
imageFile = imageAsTaken.toBlob()
image.write( imageFile.imageAsResized(width,height) )
该图像稍后显示在 Titanium.UI.WebView 中的 img 标记中。