时间:2019-05-03 来源:小程序工厂
我试的是前置摄像头 device-position="front",iphone上确认照出来的照片和系统照的照片是左右颠倒的。
前置摄像头preview是有镜像效果的,实际拍照则不会有这种镜像效果,但微信排出的照片和preview一样有镜像效果
iphone的微信小程序内前置摄像头表现与系统是一致的。具体可以参考demo例子尝试。
// camera.js
Page({
takePhoto() {
const ctx = wx.createCameraContext()
ctx.takePhoto({
quality: 'high',
success: (res) => {
this.setData({
src: res.tempImagePath
})
}
})
},
error(e) {
console.log(e.detail)
}
})
https://developers.weixin.qq.com/miniprogram/dev/component/camera.html