Skip to content
On this page

CameraContext.takePhoto

支持 Promise

拍摄照片。

参数

参数类型默认值必填说明
qualitystringnormal成像质量
合法值说明
high高质量
normal普通质量
low低质量
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

调用成功返回

属性类型说明
tempImagePathstring照片文件的临时路径 (本地路径)

Example

vue
<script setup lang="ts">
const ctx = ek.createCameraContext()

const fn = async () => {
  const res = await ctx.takePhoto({ quality: 'high' })
  console.log(res.tempImagePath)
}
</script>