Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
7e09b86e
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7e09b86e
编写于
10月 14, 2022
作者:
J
jiangminyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed with new apis.
Signed-off-by:
N
jiangminyang
<
jiangminyang@huawei.com
>
上级
ef94bf37
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
106 addition
and
182 deletion
+106
-182
zh-cn/application-dev/reference/apis/js-apis-camera.md
zh-cn/application-dev/reference/apis/js-apis-camera.md
+106
-182
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-camera.md
浏览文件 @
7e09b86e
...
...
@@ -89,17 +89,6 @@ camera.getCameraManager(context).then((cameraManager) => {
| format |
[
CameraFormat
](
#cameraformat
)
| 是 | 输出格式。 |
| size |
[
Size
](
#size
)
| 是 | 分辨率。 |
## FrameRateRange
帧率范围。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
| 名称 | 类型 | 只读 | 说明 |
| ------------------------- | ------ | ---- | ------------------- |
| min | number | 是 | 最小速率,单位fps |
| max | number | 是 | 最大速率,单位fps |
## VideoProfile
视频配置信息项。
...
...
@@ -110,7 +99,7 @@ camera.getCameraManager(context).then((cameraManager) => {
| ------------------------- | ----------------------------------------- | --- |----------- |
| format |
[
CameraFormat
](
#cameraformat
)
| 是 | 输出格式。 |
| size |
[
Size
](
#size
)
| 是 | 分辨率。 |
| frameRate
Ranges |
[
FrameRateRange
](
#frameraterange
)
| 是 | 帧率。 |
| frameRate
| Array
<number>
| 是 | 帧率。 |
## CameraOutputCapability
...
...
@@ -282,176 +271,6 @@ cameraManager.getSupportedMetadataObjectType().then((metadataobject) => {
})
```
### isCameraMuted
isCameraMuted(callback: AsyncCallback<boolean
\>
): void
查询相机是否被禁用,通过注册回调函数获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ------------------------------------ |
| callback | AsyncCallback<boolean
\>
| 是 | 回调函数,回调返回true即相机被禁用,否则为false。 |
**示例:**
```
js
cameraManager
.
isCameraMuted
((
err
,
status
)
=>
{
if
(
err
)
{
console
.
error
(
`Failed to get the cameraMuted status.
${
err
.
message
}
`
);
return
;
}
console
.
log
(
'
Callback returned with cameraMuted status
'
);
})
```
### isCameraMuted
isCameraMuted(): Promise<boolean
\>
查询相机是否被禁用,通过Promise获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**返回值:**
| 类型 | 说明 |
| ------------------------------------ | --------------------------------------------- |
| Promise<boolean
\>
| 使用Promise的方式获取结果,返回相机是否禁用的结果。 |
**示例:**
```
js
cameraManager
.
isCameraMuted
().
then
((
status
)
=>
{
console
.
log
(
'
Promise returned with the status whether camera is muted.
'
);
})
```
### isCameraMuteSupported
isCameraMuteSupported(callback: AsyncCallback<boolean
\>
): void
查询是否支持相机禁用,通过注册回调函数获取结果。
此接口为系统接口。
**需要权限:**
ohos.permission.CAMERA
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | --------------------------------------- | ---- | ------------------------------------ |
| callback | AsyncCallback<boolean
\>
| 是 | 使用callback方式获取是否支持相机禁用的结果。 |
**示例:**
```
js
cameraManager
.
isCameraMuteSupported
((
err
,
status
)
=>
{
if
(
err
)
{
console
.
error
(
`Failed to get the cameraMuteSupported.
${
err
.
message
}
`
);
return
;
}
console
.
log
(
'
Callback returned with the status whether cameraMuteSupported.
'
);
})
```
### isCameraMuteSupported
isCameraMuteSupported(): Promise<boolean
\>
查询是否支持相机禁用,通过Promise获取结果。
此接口为系统接口。
**需要权限:**
ohos.permission.CAMERA
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**返回值:**
| 类型 | 说明 |
| --------------------- | ----------------------------- |
| Promise<boolean
\>
| 使用Promise的方式获取结果,返回是否支持相机禁用的结果。 |
**示例:**
```
js
cameraManager
.
isCameraMuteSupported
().
then
((
status
)
=>
{
console
.
log
(
'
Promise returned with the status whether cameraMuteSupported.
'
);
})
```
### muteCamera
muteCamera(mute:boolean, callback: AsyncCallback<void
\>
): void
禁用相机,通过注册回调函数获取结果。
此接口为系统接口。
**需要权限:**
ohos.permission.CAMERA
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------- | ---- | ------------------------------------ |
| mute | boolean | 是 | 是否禁用相机。 |
| callback | AsyncCallback<void
\>
| 是 | 使用callback方式获取相机禁用的结果。 |
**示例:**
```
js
cameraManager
.
muteCamera
(
isMuted
,
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`Failed to mute the camera.
${
err
.
message
}
`
);
return
;
}
console
.
log
(
'
Callback returned with the muteCamera.
'
);
})
```
### muteCamera
muteCamera(mute:boolean): Promise<void
\>
禁用相机,通过Promise获取结果。
此接口为系统接口。
**需要权限:**
ohos.permission.CAMERA
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------------- | ---- | ------------ |
| mute | boolean | 是 | 是否禁用相机。 |
**返回值:**
| 类型 | 说明 |
| ----------------------------------- | ----------------------------- |
| Promise<void
\>
| 使用Promise的方式获取结果,返回是否禁用相机的结果。 |
**示例:**
```
js
cameraManager
.
muteCamera
(
isMuted
).
then
(()
=>
{
console
.
log
(
'
Promise returned muteCamera.
'
);
})
```
### createCameraInput
createCameraInput(camera: CameraDevice, callback: AsyncCallback<CameraInput
\>
): void
...
...
@@ -4132,6 +3951,111 @@ videoOutput.stop().then(() => {
})
```
### getFrameRateRange
getFrameRateRange(callback: AsyncCallback
<Array
<
number
>
\>
): void
获取帧率范围,通过注册回调函数获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------- | ---- | ------------------------ |
| callback | AsyncCallback
<Array
<
number
>
\>
| 是 | 回调函数,用于获取结果。 |
**示例:**
```
js
videoOutput
.
getFrameRateRange
((
err
)
=>
{
if
(
err
)
{
console
.
error
(
`Failed to get the frameRateRange
${
err
.
message
}
`
);
return
;
}
console
.
log
(
'
getFrameRateRange success.
'
);
});
```
### getFrameRateRange
getFrameRateRange(): Promise
<Array
<
number
>
\>
获取帧率范围,通过Promise获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**返回值:**
| 类型 | 说明 |
| -------------- | ----------------------- |
| Promise
<Array
<
number
>
\>
| 使用Promise的方式获取结果。 |
**示例:**
```
js
videoOutput
.
getFrameRateRange
().
then
(()
=>
{
console
.
log
(
'
getFrameRateRange success.
'
);
})
```
### setFrameRateRange
setFrameRateRange(minFrameRate: number, maxFrameRate: number, callback: AsyncCallback
<Array
<
number
>
\>
): void
获取帧率范围,通过注册回调函数获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------ | ----------------------------- | ---- | ------------------- |
| minFrameRate | number | 是 | 最小帧率。 |
| maxFrameRate | number | 是 | 最大帧率。 |
| callback | AsyncCallback
<Array
<
number
>
\>
| 是 | 回调函数,用于获取结果。 |
**示例:**
```
js
videoOutput
.
setFrameRateRange
(
minFrameRate
,
maxFrameRate
,
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`Failed to set the frameRateRange
${
err
.
message
}
`
);
return
;
}
console
.
log
(
'
setFrameRateRange success.
'
);
});
```
### setFrameRateRange
setFrameRateRange(minFrameRate: number, maxFrameRate: number): Promise
<Array
<
number
>
\>
获取帧率范围,通过Promise获取结果。
**系统能力:**
SystemCapability.Multimedia.Camera.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------ | ----------------------------- | ---- | ------------------- |
| minFrameRate | number | 是 | 最小帧率。 |
| maxFrameRate | number | 是 | 最大帧率。 |
**返回值:**
| 类型 | 说明 |
| -------------- | ----------------------- |
| Promise
<Array
<
number
>
\>
| 使用Promise的方式获取结果。 |
**示例:**
```
js
videoOutput
.
setFrameRateRange
(
minFrameRate
,
maxFrameRate
).
then
(()
=>
{
console
.
log
(
'
setFrameRateRange success.
'
);
})
```
### on('frameStart')
on(type: 'frameStart', callback: AsyncCallback<void
\>
): void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录