Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1e0f6579
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
1e0f6579
编写于
9月 07, 2022
作者:
R
renhongwei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增二期接口
Signed-off-by:
N
renhongwei
<
renhongwei9@huawei.com
>
上级
f9f51ba2
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
200 addition
and
0 deletion
+200
-0
zh-cn/application-dev/reference/apis/js-apis-image.md
zh-cn/application-dev/reference/apis/js-apis-image.md
+200
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-image.md
浏览文件 @
1e0f6579
...
...
@@ -1979,6 +1979,194 @@ receiver.release().then(() => {
})
```
## image.createImageCreator<sup>9+</sup>
createImageCreator(width: number, height: number, format: number, capacity: number): ImageCreator
通过宽、高、图片格式、容量创建ImageCreator实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ---------------------- |
| width | number | 是 | 图像的默认宽度。 |
| height | number | 是 | 图像的默认高度。 |
| format | number | 是 | 图像格式。 |
| capacity | number | 是 | 同时访问的最大图像数。 |
**返回值:**
| 类型 | 说明 |
| ------------------------------ | --------------------------------------- |
|
[
ImageCreator
](
#imageCreator9
)
| 如果操作成功,则返回ImageReceiver实例。 |
**示例:**
```
js
var
creator
=
image
.
createImageCreator
(
8192
,
8
,
4
,
8
);
```
## ImageCreator<sup>9+</sup>
图像创建模块,用于请求图像原生数据区域,并开放给应用编译原生图像数据的能力。
在调用以下方法前需要先创建ImageCreator实例。
### 属性
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
| 名称 | 类型 | 可读 | 可写 | 说明 |
| -------- | ---------------------------- | ---- | ---- | ------------------ |
| capacity | number | 是 | 否 | 同时访问的图像数。 |
| format |
[
ImageFormat
](
#imageformat9
)
| 是 | 否 | 图像格式。 |
### dequeueImage<sup>9+</sup>
dequeueImage(callback: AsyncCallback
\<
Image>): void
从free队列中获取buffer,用于绘制UI内容,并使用callback返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | ---------------------------------------| ---- | -------------------- |
| callback | AsyncCallback
\<
Image> | 是 | 回调函数,返回最新图片。 |
**示例:**
```
js
111
```
### dequeueImage<sup>9+</sup>
dequeueImage(): Promise
\<
Image>
从free队列中获取buffer,用于绘制UI内容,并使用promise返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**返回值:**
| 类型 | 说明 |
| --------------- | ------------- |
| Promise
\<
Image> | 返回绘制的图像。 |
**示例:**
```
js
111
```
### dequeueImage<sup>9+</sup>
queueImage(interface: Image, callback: AsyncCallback
\<
void>): void
将绘制好的buffer放入Dirty队列,供消费者使用,并使用callback返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | -------------------------| ---- | -------------------- |
| interface | Image | 是 | 绘制好的buffer图像。 |
| callback | AsyncCallback
\<
void> | 是 | 获取回调,失败时返回错误信息。 |
**示例:**
```
js
111
```
### dequeueImage<sup>9+</sup>
queueImage(interface: Image): Promise
\<
void>
将绘制好的buffer放入Dirty队列,供消费者使用,并使用promise返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | --------| ---- | ------------------- |
| interface | Image | 是 | 绘制好的buffer图像。 |
**返回值:**
| 类型 | 说明 |
| -------------- | ------------- |
| Promise
\<
void> | 获取回调,失败时返回错误信息。 |
**示例:**
```
js
111
```
### on<sup>9+</sup>
on(type: 'imageRelease', callback: AsyncCallback
\<
void>): void
监听imageRelease事件,并使用callback返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | -------------------------| ---- | -------------------- |
| type | 'imageRelease' | 是 | 监听事件类型。 |
| callback | AsyncCallback
\<
void> | 是 | 获取回调,失败时返回错误信息。 |
**示例:**
```
js
111
```
### release<sup>9+</sup>
release(callback: AsyncCallback
\<
void>): void
释放当前图像,并使用callback返回结果。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**参数:**
| 名称 | 类型 | 必填 | 说明 |
| ------------- | -------------------------| ---- | -------------------- |
| callback | AsyncCallback
\<
void> | 是 | 获取回调,失败时返回错误信息。 |
**示例:**
```
js
111
```
### release<sup>9+</sup>
release(): Promise
\<
void>
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageCreator
**返回值:**
| 类型 | 说明 |
| -------------- | ------------- |
| Promise
\<
void> | 获取回调,失败时返回错误信息。 |
**示例:**
```
js
111
```
## Image<sup>9+</sup>
提供基本的图像操作,包括获取图像信息、读写图像数据。调用
[
readNextImage
](
#readnextimage9
)
和
[
readLatestImage
](
#readlatestimage9
)
接口时会返回image。
...
...
@@ -2142,6 +2330,11 @@ img.release().then(() =>{
| RGB_565 | 2 | 格式为RGB_565 |
| RGBA_8888 | 3 | 格式为RGBA_8888。 |
| BGRA_8888
<sup>
9+
</sup>
| 4 | 格式为BGRA_8888。 |
| RGB_888
<sup>
9+
</sup>
| 5 | 格式为RGB_888。 |
| ALPHA_8
<sup>
9+
</sup>
| 6 | 格式为ALPHA_8。 |
| RGBA_F16
<sup>
9+
</sup>
| 7 | 格式为RGBA_F16。 |
| NV21
<sup>
9+
</sup>
| 8 | 格式为NV21。 |
| NV12
<sup>
9+
</sup>
| 9 | 格式为NV12。 |
## AlphaType<sup>9+</sup>
...
...
@@ -2232,6 +2425,7 @@ PixelMap的初始化选项。
| ------- | ------ | ---- | ---- | --------------------------------------------------- |
| format | string | 是 | 是 | 目标格式。
</br>
当前支持格式有:.jpg .png .gif .bmp .webp RAW。 |
| quality | number | 是 | 是 | JPEG编码中设定输出图片质量的参数,取值范围为1-100。 |
| bufferSize | number | 是 | 是 | 用于设置图片大小,默认为10M。 |
## GetImagePropertyOptions<sup>7+</sup>
...
...
@@ -2260,6 +2454,12 @@ PixelMap的初始化选项。
| GPS_LONGITUDE | "GPSLongitude" | 图片经度。 |
| GPS_LATITUDE_REF | "GPSLatitudeRef" | 纬度引用,例如N或S。 |
| GPS_LONGITUDE_REF | "GPSLongitudeRef" | 经度引用,例如W或E。 |
| DATE_TIME_ORIGINAL
<sup>
9+
</sup>
| "DateTimeOriginal" | 拍摄时间,例如2022:09:06 15:48:00。 |
| EXPOSURE_TIME
<sup>
9+
</sup>
| "ExposureTime" | 曝光时间,例如1/33 sec.。|
| SCENE_TYPE
<sup>
9+
</sup>
| "SceneType" | 拍摄场景,例如Directly photographed。 |
| ISO_SPEED_RATINGS
<sup>
9+
</sup>
| "ISOSpeedRatings" | ISO感光度,例如400。 |
| F_NUMBER
<sup>
9+
</sup>
| "FNumber" | 光圈值,例如f/1.8。 |
## ImageFormat<sup>9+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录