Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a4c444db
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看板
未验证
提交
a4c444db
编写于
7月 18, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 18, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6864 媒体文档修改,需要翻译
Merge pull request !6864 from zengyawen/OpenHarmony-3.1-Release
上级
dd96e81a
a79c67ab
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
440 deletion
+3
-440
zh-cn/application-dev/reference/apis/js-apis-image.md
zh-cn/application-dev/reference/apis/js-apis-image.md
+0
-438
zh-cn/application-dev/reference/apis/js-apis-media.md
zh-cn/application-dev/reference/apis/js-apis-media.md
+3
-2
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-image.md
浏览文件 @
a4c444db
...
...
@@ -1059,384 +1059,6 @@ imagePackerApi.release().then(()=>{
})
```
## image.createImageReceiver<sup>9+</sup>
createImageReceiver(width: number, height: number, format: number, capacity: number): ImageReceiver
通过宽、高、图片格式、容量创建ImageReceiver实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ---------------------- |
| width | number | 是 | 图像的默认宽度。 |
| height | number | 是 | 图像的默认高度。 |
| format | number | 是 | 图像格式。 |
| capacity | number | 是 | 同时访问的最大图像数。 |
**返回值:**
| 类型 | 说明 |
| -------------------------------- | --------------------------------------- |
|
[
ImageReceiver
](
#imagereceiver9
)
| 如果操作成功,则返回ImageReceiver实例。 |
**示例:**
```
js
var
receiver
=
image
.
createImageReceiver
(
8192
,
8
,
4
,
8
);
```
## ImageReceiver<sup>9+</sup>
图像接收类,用于获取组件surface id,接收最新的图片和读取下一张图片,以及释放ImageReceiver实例。
在调用以下方法前需要先创建ImageReceiver实例。
### 属性
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageReceiver
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------------------- | ---------------------------- | ---- | ---- | ------------------ |
| size
<sup>
9+
</sup>
|
[
Size
](
#size
)
| 是 | 否 | 图片大小。 |
| capacity
<sup>
9+
</sup>
| number | 是 | 否 | 同时访问的图像数。 |
| format
<sup>
9+
</sup>
|
[
ImageFormat
](
#imageformat9
)
| 是 | 否 | 图像格式。 |
### getReceivingSurfaceId<sup>9+</sup>
getReceivingSurfaceId(callback: AsyncCallback
\<
string>): void
用于获取一个surface id供Camera或其他组件使用。使用callback返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ---------------------- | ---- | -------------------------- |
| callback | AsyncCallback
\<
string> | 是 | 回调函数,返回surface id。 |
**示例:**
```
js
receiver
.
getReceivingSurfaceId
((
err
,
id
)
=>
{
if
(
err
)
{
console
.
log
(
'
getReceivingSurfaceId failed.
'
);
}
else
{
console
.
log
(
'
getReceivingSurfaceId succeeded.
'
);
}
});
```
### getReceivingSurfaceId<sup>9+</sup>
getReceivingSurfaceId(): Promise
\<
string>
用于获取一个surface id供Camera或其他组件使用。使用promise返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**返回值:**
| 类型 | 说明 |
| ---------------- | -------------------- |
| Promise
\<
string> | 异步返回surface id。 |
**示例:**
```
js
receiver
.
getReceivingSurfaceId
().
then
(
id
=>
{
console
.
log
(
'
getReceivingSurfaceId succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
getReceivingSurfaceId failed.
'
);
})
```
### readLatestImage<sup>9+</sup>
readLatestImage(callback: AsyncCallback
\<
Image>): void
从ImageReceiver读取最新的图片,并使用callback返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback
<
[
Image
](
#image9
)
>
| 是 | 回调函数,返回最新图像。 |
**示例:**
```
js
receiver
.
readLatestImage
((
err
,
img
)
=>
{
if
(
err
)
{
console
.
log
(
'
readLatestImage failed.
'
);
}
else
{
console
.
log
(
'
readLatestImage succeeded.
'
);
}
});
```
### readLatestImage<sup>9+</sup>
readLatestImage(): Promise
\<
Image>
从ImageReceiver读取最新的图片,并使用promise返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**返回值:**
| 类型 | 说明 |
| ------------------------- | ------------------ |
| Promise
<
[
Image
](
#image8
)
>
| 异步返回最新图片。 |
**示例:**
```
js
receiver
.
readLatestImage
().
then
(
img
=>
{
console
.
log
(
'
readLatestImage succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
readLatestImage failed.
'
);
})
```
### readNextImage<sup>9+</sup>
readNextImage(callback: AsyncCallback
\<
Image>): void
从ImageReceiver读取下一张图片,并使用callback返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback
<
[
Image
](
#image9
)
>
| 是 | 回调函数,返回下一张图片。 |
**示例:**
```
js
receiver
.
readNextImage
((
err
,
img
)
=>
{
if
(
err
)
{
console
.
log
(
'
readNextImage failed.
'
);
}
else
{
console
.
log
(
'
readNextImage succeeded.
'
);
}
});
```
### readNextImage<sup>9+</sup>
readNextImage(): Promise
\<
Image>
从ImageReceiver读取下一张图片,并使用promise返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**返回值:**
| 类型 | 说明 |
| ------------------------- | -------------------- |
| Promise
<
[
Image
](
#image9
)
>
| 异步返回下一张图片。 |
**示例:**
```
js
receiver
.
readNextImage
().
then
(
img
=>
{
console
.
log
(
'
readNextImage succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
readNextImage failed.
'
);
})
```
### on('imageArrival')<sup>9+</sup>
on(type: 'imageArrival', callback: AsyncCallback
\<
void>): void
接收图片时注册回调。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------- | ---- | ------------------------------------------------------ |
| type | string | 是 | 注册事件的类型,固定为'imageArrival',接收图片时触发。 |
| callback | AsyncCallback
\<
void> | 是 | 注册的事件回调。 |
**示例:**
```
js
receiver
.
on
(
'
imageArrival
'
,
()
=>
{})
```
### release<sup>9+</sup>
release(callback: AsyncCallback
\<
void>): void
释放ImageReceiver实例并使用回调返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------- | ---- | ------------------------ |
| callback | AsyncCallback
\<
void> | 是 | 回调函数,返回操作结果。 |
**示例:**
```
js
receiver
.
release
(()
=>
{})
```
### release<sup>9+</sup>
release(): Promise
\<
void>
释放ImageReceiver实例并使用promise返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.ImageReceiver
**返回值:**
| 类型 | 说明 |
| -------------- | ------------------ |
| Promise
\<
void> | 异步返回操作结果。 |
**示例:**
```
js
receiver
.
release
().
then
(()
=>
{
console
.
log
(
'
release succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
release failed.
'
);
})
```
## Image<sup>9+</sup>
提供基本的图像操作,包括获取图像信息、读写图像数据。调用
[
readNextImage
](
#readnextimage9
)
和
[
readLatestImage
](
#readlatestimage9
)
接口时会返回image。
### 属性
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------------------- | ------------------ | ---- | ---- | -------------------------------------------------- |
| clipRect
<sup>
9+
</sup>
|
[
Region
](
#region7
)
| 是 | 是 | 要裁剪的图像区域。 |
| size
<sup>
9+
</sup>
|
[
Size
](
#size
)
| 是 | 否 | 图像大小。 |
| format
<sup>
9+
</sup>
| number | 是 | 否 | 图像格式,参考
[
PixelMapFormat
](
#pixelmapformat7
)
。 |
### getComponent<sup>9+</sup>
getComponent(componentType: ComponentType, callback: AsyncCallback
\<
Component>): void
根据图像的组件类型从图像中获取组件缓存并使用callback返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | --------------------------------------- | ---- | -------------------- |
| componentType |
[
ComponentType
](
#componenttype9
)
| 是 | 图像的组件类型。 |
| callback | AsyncCallback
<
[
Component
](
#component9
)
>
| 是 | 用于返回组件缓冲区。 |
**示例:**
```
js
img
.
getComponent
(
4
,
(
err
,
component
)
=>
{
if
(
err
)
{
console
.
log
(
'
getComponent failed.
'
);
}
else
{
console
.
log
(
'
getComponent succeeded.
'
);
}
})
```
### getComponent<sup>9+</sup>
getComponent(componentType: ComponentType): Promise
\<
Component>
根据图像的组件类型从图像中获取组件缓存并使用Promise方式返回结果。
**系统能力:**
SystemCapability.Multimedia.Image.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | -------------------------------- | ---- | ---------------- |
| componentType |
[
ComponentType
](
#componenttype9
)
| 是 | 图像的组件类型。 |
**返回值:**
| 类型 | 说明 |
| --------------------------------- | --------------------------------- |
| Promise
<
[
Component
](
#component9
)
>
| 用于返回组件缓冲区的promise实例。 |
**示例:**
```
js
img
.
getComponent
(
4
).
then
(
component
=>
{
})
```
### release<sup>9+</sup>
release(callback: AsyncCallback
\<
void>): void
释放当前图像并使用callback返回结果。
在接收另一个图像前必须先释放对应资源。
**系统能力:**
SystemCapability.Multimedia.Image.Core
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------- | ---- | -------------- |
| callback | AsyncCallback
\<
void> | 是 | 返回操作结果。 |
**示例:**
```
js
img
.
release
(()
=>
{
console
.
log
(
'
release succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
release failed.
'
);
})
```
### release<sup>9+</sup>
release(): Promise
\<
void>
释放当前图像并使用Promise方式返回结果。
在接收另一个图像前必须先释放对应资源。
**系统能力:**
SystemCapability.Multimedia.Image.Core
**返回值:**
| 类型 | 说明 |
| -------------- | --------------------- |
| Promise
\<
void> | promise返回操作结果。 |
**示例:**
```
js
img
.
release
().
then
(()
=>
{
console
.
log
(
'
release succeeded.
'
);
}).
catch
(
error
=>
{
console
.
log
(
'
release failed.
'
);
})
```
## PositionArea<sup>7+</sup>
...
...
@@ -1484,29 +1106,7 @@ img.release().then(() =>{
| RGBA_8888 | 3 | 格式为RGBA_8888。 |
| RGB_565 | 2 | 格式为RGB_565。 |
## AlphaType<sup>9+</sup>
枚举,图像的透明度类型。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 默认值 | 描述 |
| -------- | ------ | ----------------------- |
| UNKNOWN | 0 | 未知透明度。 |
| OPAQUE | 1 | 没有alpha或图片全透明。 |
| PREMUL | 2 | RGB前乘alpha。 |
| UNPREMUL | 3 | RGB不前乘alpha。 |
## ScaleMode<sup>9+</sup>
枚举,图像的缩放模式。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 默认值 | 描述 |
| --------------- | ------ | -------------------------------------------------- |
| CENTER_CROP | 1 | 缩放图像以填充目标图像区域并居中裁剪区域外的效果。 |
| FIT_TARGET_SIZE | 2 | 图像适合目标尺寸的效果。 |
## InitializationOptions<sup>8+</sup>
...
...
@@ -1516,10 +1116,8 @@ PixelMap的初始化选项。
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------------------- | ---------------------------------- | ---- | ---- | -------------- |
| alphaType
<sup>
9+
</sup>
|
[
AlphaType
](
#alphatype9
)
| 是 | 是 | 透明度。 |
| editable | boolean | 是 | 是 | 是否可编辑。 |
| pixelFormat |
[
PixelMapFormat
](
#pixelmapformat7
)
| 是 | 是 | 像素格式。 |
| scaleMode
<sup>
9+
</sup>
|
[
ScaleMode
](
#scalemode9
)
| 是 | 是 | 缩略值。 |
| size |
[
Size
](
#size
)
| 是 | 是 | 创建图片大小。 |
## DecodingOptions<sup>7+</sup>
...
...
@@ -1589,42 +1187,6 @@ PixelMap的初始化选项。
| GPS_LATITUDE_REF | "GPSLatitudeRef" | 纬度引用,例如N或S。|
| GPS_LONGITUDE_REF | "GPSLongitudeRef" | 经度引用,例如W或E。|
## ImageFormat<sup>9+</sup>
枚举,图片格式。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 默认值 | 描述 |
| ------------ | ------ | -------------------- |
| YCBCR_422_SP | 1000 | YCBCR422半平面格式。 |
| JPEG | 2000 | JPEG编码格式。 |
## ComponentType<sup>9+</sup>
枚举,图像的组件类型。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageReceiver
| 名称 | 默认值 | 描述 |
| ----- | ------ | ----------- |
| YUV_Y | 1 | 亮度信息。 |
| YUV_U | 2 | 色度信息。 |
| YUV_V | 3 | 色度信息。 |
| JPEG | 4 | Jpeg 类型。 |
## Component<sup>9+</sup>
描述图像颜色分量。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------- | -------------------------------- | ---- | ---- | ------------ |
| componentType |
[
ComponentType
](
#componenttype9
)
| 是 | 否 | 组件类型。 |
| rowStride | number | 是 | 否 | 行距。 |
| pixelStride | number | 是 | 否 | 像素间距。 |
| byteBuffer | ArrayBuffer | 是 | 否 | 组件缓冲区。 |
## ResponseCode
...
...
zh-cn/application-dev/reference/apis/js-apis-media.md
浏览文件 @
a4c444db
...
...
@@ -214,7 +214,8 @@ Codec MIME类型枚举。
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------- | ------------------------- | ---- | ---- | ------------------------------------------------------------ |
| src | string | 是 | 是 | 音频媒体URI,支持当前主流的音频格式(mp4、aac、mp3、ogg、wav)。
<br>
**支持路径示例**
:
<br>
1、fd类型播放:fd://xx
<br>
![](
figures/zh-cn_image_url.png
)
<br>
2、http网络播放: http://xx
<br>
3、hls网络播放路径:开发中
<br>
**注意事项**
:
<br>
使用媒体素材需要获取读权限,否则无法正常播放。 |
| src | string | 是 | 是 | 音频媒体URI,支持当前主流的视频格式(mp4、mpeg-ts、webm、mkv)。
<br>
**支持路径示例**
:
<br>
1. fd类型播放:fd://xx
<br>
![](
figures/zh-cn_image_url.png
)
<br>
2. http网络播放: http://xx
<br/>
3. https网络播放: https://xx
<br/>
4. hls网络播放路径:http://xx或者https://xx
<br/>
**注意事项**
:
<br>
使用媒体素材需要获取读权限,否则无法正常播放。
|
| loop | boolean | 是 | 是 | 音频循环播放属性,设置为'true'表示循环播放。 |
| currentTime | number | 是 | 否 | 音频的当前播放位置。 |
| duration | number | 是 | 否 | 音频时长。 |
...
...
@@ -606,7 +607,7 @@ audioPlayer.setVolume(3); //设置volume为无效值,触发'error'事件
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------------------ | ---------------------------------- | ---- | ---- | ------------------------------------------------------------ |
| url
<sup>
8+
</sup>
| string | 是 | 是 | 视频媒体URL,支持当前主流的视频格式(mp4、mpeg-ts、webm、mkv)。
<br>
**支持路径示例**
:
<br>
1. fd类型播放:fd://xx
<br>
![](
figures/zh-cn_image_url.png
)
<br>
2
、http网络播放: http://xx
<br/>
3、hls网络播放路径:开发中
<br/>
**注意事项**
:
<br>
使用媒体素材需要获取读权限,否则无法正常播放。 |
| url
<sup>
8+
</sup>
| string | 是 | 是 | 视频媒体URL,支持当前主流的视频格式(mp4、mpeg-ts、webm、mkv)。
<br>
**支持路径示例**
:
<br>
1. fd类型播放:fd://xx
<br>
![](
figures/zh-cn_image_url.png
)
<br>
2
. http网络播放: http://xx
<br/>
3. https网络播放: https://xx
<br/>
4. hls网络播放路径:http://xx或者https://xx
<br/>
**注意事项**
:
<br>
使用媒体素材需要获取读权限,否则无法正常播放。 |
| loop
<sup>
8+
</sup>
| boolean | 是 | 是 | 视频循环播放属性,设置为'true'表示循环播放。 |
| currentTime
<sup>
8+
</sup>
| number | 是 | 否 | 视频的当前播放位置。 |
| duration
<sup>
8+
</sup>
| number | 是 | 否 | 视频时长,返回-1表示直播模式。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录