android - Cordova 摄像头插件图像被前置摄像头翻转
<p><p>我正在将 Cordova 相机插件用于我正在开发的应用程序,我想知道是否有人找到了阻止图像在前置摄像头上翻转的方法。例如,如果您指向相机的左侧,它会在最终图像上翻转到右侧。</p>
<pre><code>$scope.takePhoto = function() {
//take picture with the camera
Camera.getPicture({
quality: 50,
saveToPhotoAlbum: true,
correctOrientation: true,
destinationType: 0,
encodingType: 0
}).then(function(imageData) {
console.log("Success")
}, function(err) {
console.log("error")
});
};
</code></pre>
<p>添加了带有相机设置的代码,以防万一。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>搜索了一段时间后发现,在cordova插件中没有确定的方法来改变它,这主要取决于你的原生相机处理图像的方式,大多数手机似乎都是在前置摄像头上做到这一点的。手机反转预览图片,以便您可以正确拍摄(左为左等),然后在拍照后以正确的方式将其翻转回来,使文字等不会反转。没有设置可以更改此行为。似乎大多数人不习惯这样看待自己。</p></p>
<p style="font-size: 20px;">关于android - Cordova 摄像头插件图像被前置摄像头翻转,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35599106/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35599106/
</a>
</p>
页:
[1]