Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4834da60
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,发现更多精彩内容 >>
未验证
提交
4834da60
编写于
7月 22, 2022
作者:
O
openharmony_ci
提交者:
Gitee
7月 22, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6945 image文档整修
Merge pull request !6945 from 徐蕊w/master
上级
815231de
9dc2e484
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
168 addition
and
46 deletion
+168
-46
zh-cn/application-dev/reference/apis/js-apis-image.md
zh-cn/application-dev/reference/apis/js-apis-image.md
+168
-46
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-image.md
浏览文件 @
4834da60
...
...
@@ -82,9 +82,9 @@ image.createPixelMap(color, opts, (error, pixelmap) => {
**系统能力:**
SystemCapability.Multimedia.Image.Core
| 名称
| 类型 | 可读 | 可写 | 说明 |
| ----------
-------------
| ------- | ---- | ---- | -------------------------- |
| isEditable
<sup>
7+
</sup>
| boolean | 是 | 否 | 设定是否图像像素可被编辑。 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------- | ------- | ---- | ---- | -------------------------- |
| isEditable | boolean | 是 | 否 | 设定是否图像像素可被编辑。 |
### readPixelsToBuffer<sup>7+</sup>
...
...
@@ -103,7 +103,7 @@ readPixelsToBuffer(dst: ArrayBuffer): Promise\<void>
**返回值:**
| 类型 | 说明 |
|
:------------- | :
---------------------------------------------- |
|
-------------- | -
---------------------------------------------- |
| Promise
\<
void> | Promise实例,用于获取结果,失败时返回错误信息。 |
**示例:**
...
...
@@ -279,7 +279,7 @@ writePixels(area: PositionArea, callback: AsyncCallback\<void>): void
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ------------------------------ | ---- | ------------------------------ |
| area |
[
PositionArea
](
#positionarea7
)
| 是 | 区域,根据区域写入。 |
| callback
:
| AsyncCallback
\<
void> | 是 | 获取回调,失败时返回错误信息。 |
| callback
| AsyncCallback
\<
void> | 是 | 获取回调,失败时返回错误信息。 |
**示例:**
...
...
@@ -925,6 +925,33 @@ let path = this.context.getApplicationContext().fileDirs + "test.jpg";
const
imageSourceApi
=
image
.
createImageSource
(
path
);
```
## image.createImageSource<sup>9+</sup>
createImageSource(uri: string, options: SourceOptions): ImageSource
通过传入的uri创建图片源实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageSource
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ----------------------------------- |
| uri | string | 是 | 图片路径,当前仅支持应用沙箱路径。 |
| options |
[
SourceOptions
](
#SourceOptions
)
| 是 | 图片属性,包括图片序号与默认属性值。|
**返回值:**
| 类型 | 说明 |
| --------------------------- | -------------------------------------------- |
|
[
ImageSource
](
#imagesource
)
| 返回ImageSource类实例,失败时返回undefined。 |
**示例:**
```
js
const
imageSourceApi
=
image
.
createImageSource
(
'
/sdcard/test.jpg
'
);
```
## image.createImageSource<sup>7+</sup>
createImageSource(fd: number): ImageSource
...
...
@@ -948,7 +975,34 @@ createImageSource(fd: number): ImageSource
**示例:**
```
js
const
imageSourceApi
=
image
.
createImageSource
(
0
)
const
imageSourceApi
=
image
.
createImageSource
(
0
);
```
## image.createImageSource<sup>9+</sup>
createImageSource(fd: number, options: SourceOptions): ImageSource
通过传入文件描述符来创建图片源实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageSource
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ----------------------------------- |
| fd | number | 是 | 文件描述符fd。 |
| options |
[
SourceOptions
](
#SourceOptions
)
| 是 | 图片属性,包括图片序号与默认属性值。|
**返回值:**
| 类型 | 说明 |
| --------------------------- | -------------------------------------------- |
|
[
ImageSource
](
#imagesource
)
| 返回ImageSource类实例,失败时返回undefined。 |
**示例:**
```
js
const
imageSourceApi
=
image
.
createImageSource
(
fd
);
```
## image.createImageSource<sup>9+</sup>
...
...
@@ -972,9 +1026,64 @@ const buf = new ArrayBuffer(96);
const
imageSourceApi
=
image
.
createImageSource
(
buf
);
```
## image.createImageSource<sup>9+</sup>
createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource
通过缓冲区创建图片源实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageSource
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | -------------------------------- | ---- | ------------------------------------ |
| buf | ArrayBuffer | 是 | 图像缓冲区数组。 |
| options |
[
SourceOptions
](
#SourceOptions
)
| 是 | 图片属性,包括图片序号与默认属性值。 |
**返回值:**
| 类型 | 说明 |
| --------------------------- | -------------------------------------------- |
|
[
ImageSource
](
#imagesource
)
| 返回ImageSource类实例,失败时返回undefined。 |
**示例:**
```
js
const
data
=
new
ArrayBuffer
(
112
);
const
imageSourceApi
=
image
.
createImageSource
(
data
);
```
## image.CreateIncrementalSource<sup>9+</sup>
CreateIncrementalSource(buf: ArrayBuffer): ImageSource
通过缓冲区以增量的方式创建图片源实例。
**系统能力:**
SystemCapability.Multimedia.Image.ImageSource
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------| ---- | ----------|
| buf | ArrayBuffer | 是 | 增量数据。|
**返回值:**
| 类型 | 说明 |
| --------------------------- | --------------------------------- |
|
[
ImageSource
](
#imagesource
)
| 返回图片源,失败时返回undefined。 |
**示例:**
```
js
const
buf
=
new
ArrayBuffer
(
96
);
const
imageSourceApi
=
image
.
CreateIncrementalSource
(
buf
);
```
## image.CreateIncrementalSource<sup>9+</sup>
function
CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource
CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource
通过缓冲区以增量的方式创建图片源实例。
...
...
@@ -1109,8 +1218,8 @@ getImageProperty(key:string, options?: GetImagePropertyOptions): Promise\<string
**返回值:**
| 类型 | 说明 |
| ---------------- | ------------------------------------------------------------ |
| 类型 | 说明
|
| ---------------- | ------------------------------------------------------------
-----
|
| Promise
\<
string> | Promise实例,用于异步获取图片属性值,如获取失败则返回属性默认值。 |
**示例:**
...
...
@@ -1159,11 +1268,11 @@ getImageProperty(key:string, options: GetImagePropertyOptions, callback: AsyncCa
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------------------- | ---- | ------------------------------------------------------------ |
| key | string | 是 | 图片属性名。 |
| options |
[
GetImagePropertyOptions
](
#getimagepropertyoptions7
)
| 是 | 图片属性,包括图片序号与默认属性值。 |
| callback | AsyncCallback
\<
string> | 是 | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。
|
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ---------------------------------------------------- | ---- | ------------------------------------------------------------
-
|
| key | string | 是 | 图片属性名。
|
| options |
[
GetImagePropertyOptions
](
#getimagepropertyoptions7
)
| 是 | 图片属性,包括图片序号与默认属性值。
|
| callback | AsyncCallback
\<
string> | 是 | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。|
**示例:**
...
...
@@ -1211,7 +1320,7 @@ imageSourceApi.modifyImageProperty("ImageWidth", "abc")
### modifyImageProperty<sup>9+</sup>
modifyImageProperty(key: string, value: string, callback: AsyncCallback
<void>
): void
modifyImageProperty(key: string, value: string, callback: AsyncCallback
\
<
void>): void
通过指定的键修改图片属性的值,callback形式返回结果。
...
...
@@ -1266,7 +1375,7 @@ imageSourceIncrementalSApi.updateData(array, false, 0, 10).then(data => {
### updateData<sup>9+</sup>
updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number, callback: AsyncCallback
<void>
): void
updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number, callback: AsyncCallback
\
<
void>): void
更新增量数据,callback形式返回结果。
...
...
@@ -1423,7 +1532,7 @@ createImagePacker(): ImagePacker
创建ImagePacker实例。
**系统能力:**
SystemCapability.Multimedia.Image.Image
Receiv
er
**系统能力:**
SystemCapability.Multimedia.Image.Image
Pack
er
**返回值:**
...
...
@@ -1491,8 +1600,8 @@ packing(source: ImageSource, option: PackingOption): Promise\<ArrayBuffer>
**返回值:**
| 类型 | 说明 |
|
:--------------------------- | :
-------------------------------------------- |
| Promise
\<
ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。 |
|
---------------------------- | -
-------------------------------------------- |
| Promise
\<
ArrayBuffer>
| Promise实例,用于异步获取压缩或打包后的数据。 |
**示例:**
...
...
@@ -1552,9 +1661,9 @@ packing(source: PixelMap, option: PackingOption): Promise\<ArrayBuffer>
**返回值:**
| 类型
| 说明
|
|
:--------------------------- | :
-------------------------------------------- |
| Promise
\<
ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。
|
| 类型
| 说明
|
|
--------------------- |
-------------------------------------------- |
| Promise
\<
ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。|
**示例:**
...
...
@@ -1601,9 +1710,9 @@ release(): Promise\<void>
**返回值:**
| 类型 | 说明
|
|
:------------- | :
------------------------------------------------------ |
| Promise
\<
void> | Promise实例,用于异步获取释放结果,失败时返回错误信息。
|
| 类型 | 说明 |
|
-------------- |
------------------------------------------------------ |
| Promise
\<
void> | Promise实例,用于异步获取释放结果,失败时返回错误信息。|
**示例:**
...
...
@@ -1654,11 +1763,11 @@ var receiver = image.createImageReceiver(8192, 8, 4, 8);
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImageReceiver
| 名称
| 类型 | 可读 | 可写 | 说明 |
| --------
-------------
| ---------------------------- | ---- | ---- | ------------------ |
| size
<sup>
9+
</sup>
|
[
Size
](
#size
)
| 是 | 否 | 图片大小。 |
| capacity
<sup>
9+
</sup>
| number | 是 | 否 | 同时访问的图像数。 |
| format
<sup>
9+
</sup>
|
[
ImageFormat
](
#imageformat9
)
| 是 | 否 | 图像格式。 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| -------- | ---------------------------- | ---- | ---- | ------------------ |
| size |
[
Size
](
#size
)
| 是 | 否 | 图片大小。 |
| capacity | number | 是 | 否 | 同时访问的图像数。 |
| format |
[
ImageFormat
](
#imageformat9
)
| 是 | 否 | 图像格式。 |
### getReceivingSurfaceId<sup>9+</sup>
...
...
@@ -1883,11 +1992,11 @@ receiver.release().then(() => {
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称
| 类型 | 可读 | 可写 | 说明 |
| --------
-------------
| ------------------ | ---- | ---- | -------------------------------------------------- |
| clipRect
<sup>
9+
</sup>
|
[
Region
](
#region7
)
| 是 | 是 | 要裁剪的图像区域。 |
| size
<sup>
9+
</sup>
|
[
Size
](
#size
)
| 是 | 否 | 图像大小。 |
| format
<sup>
9+
</sup>
| number | 是 | 否 | 图像格式,参考
[
PixelMapFormat
](
#pixelmapformat7
)
。 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| -------- | ------------------ | ---- | ---- | -------------------------------------------------- |
| clipRect |
[
Region
](
#region7
)
| 是 | 是 | 要裁剪的图像区域。 |
| size
>
|
[
Size
](
#size
)
| 是 | 否 | 图像大小。 |
| format | number | 是 | 否 | 图像格式,参考
[
PixelMapFormat
](
#pixelmapformat7
)
。 |
### getComponent<sup>9+</sup>
...
...
@@ -2064,19 +2173,32 @@ img.release().then(() =>{
| CENTER_CROP | 1 | 缩放图像以填充目标图像区域并居中裁剪区域外的效果。 |
| FIT_TARGET_SIZE | 2 | 图像适合目标尺寸的效果。 |
## SourceOptions<sup>9+</sup>
ImageSource的初始化选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------------- | ---------------------------------- | ---- | ---- | ------------------ |
| sourceDensity | number | 是 | 是 | ImageSource的密度。|
| sourcePixelFormat |
[
PixelMapFormat
](
#pixelmapformat7
)
| 是 | 是 | 图片像素格式。 |
| sourceSize |
[
Size
](
#size
)
| 是 | 是 | 图像像素大小。 |
## InitializationOptions<sup>8+</sup>
PixelMap的初始化选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Co
d
e
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Co
r
e
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------------------- | ---------------------------------- | ---- | ---- | -------------- |
| alphaType
<sup>
9+
</sup>
|
[
AlphaType
](
#alphatype9
)
| 是 | 是 | 透明度。 |
| editable | boolean | 是 | 是 | 是否可编辑。 |
| pixelFormat |
[
PixelMapFormat
](
#pixelmapformat7
)
| 是 | 是 | 像素格式。 |
| scaleMode
<sup>
9+
</sup>
|
[
ScaleMode
](
#scalemode9
)
| 是 | 是 | 缩略值。 |
| size |
[
Size
](
#size
)
| 是 | 是 | 创建图片大小。 |
| 名称
| 类型 | 可读 | 可写 | 说明 |
| ----------------------
--
| ---------------------------------- | ---- | ---- | -------------- |
| alphaType
<sup>
9+
</sup>
|
[
AlphaType
](
#alphatype9
)
| 是 | 是 | 透明度。 |
| editable
| boolean | 是 | 是 | 是否可编辑。 |
| pixelFormat
|
[
PixelMapFormat
](
#pixelmapformat7
)
| 是 | 是 | 像素格式。 |
| scaleMode
<sup>
9+
</sup>
|
[
ScaleMode
](
#scalemode9
)
| 是 | 是 | 缩略值。 |
| size
|
[
Size
](
#size
)
| 是 | 是 | 创建图片大小。 |
## DecodingOptions<sup>7+</sup>
...
...
@@ -2112,9 +2234,9 @@ PixelMap的初始化选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Multimedia.Image.ImagePacker
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------- | ------ | ---- | ---- | -------------- |
| format | string | 是 | 是 | 目标格式。 |
| 名称 | 类型 | 可读 | 可写 | 说明
|
| ------- | ------ | ---- | ---- | --------------
-------------------------------------
|
| format | string | 是 | 是 | 目标格式。
|
| quality | number | 是 | 是 | JPEG编码中设定输出图片质量的参数,取值范围为1-100。 |
## GetImagePropertyOptions<sup>7+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录