Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
71c86fd6
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,发现更多精彩内容 >>
未验证
提交
71c86fd6
编写于
5月 30, 2022
作者:
Z
zengyawen
提交者:
Gitee
5月 30, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/apis/js-apis-image.md.
Signed-off-by:
N
zengyawen
<
zengyawen1@huawei.com
>
上级
04aef851
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
16 deletion
+16
-16
zh-cn/application-dev/reference/apis/js-apis-image.md
zh-cn/application-dev/reference/apis/js-apis-image.md
+16
-16
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-image.md
浏览文件 @
71c86fd6
...
...
@@ -10,7 +10,7 @@ import image from '@ohos.multimedia.image';
```
## image.createPixelMap<sup>8+</sup>
createPixelMap(colors: ArrayBuffer, options: Initializ
e
tionOptions): Promise
\<
PixelMap>
createPixelMap(colors: ArrayBuffer, options: Initializ
a
tionOptions): Promise
\<
PixelMap>
通过属性创建PixelMap,通过Promise返回结果。
...
...
@@ -21,7 +21,7 @@ createPixelMap(colors: ArrayBuffer, options: InitializetionOptions): Promise\<Pi
| 名称 | 类型 | 必填 | 说明 |
| ------- | ------------------------------------------------ | ---- | ------------------------------------------------------------ |
| colors | ArrayBuffer | 是 | 颜色数组。 |
| options |
[
Initializ
e
tionOptions
](
#initializationoptions8
)
| 是 | 创建像素的属性,包括透明度,尺寸,缩略值,像素格式和是否可编辑。 |
| options |
[
Initializ
a
tionOptions
](
#initializationoptions8
)
| 是 | 创建像素的属性,包括透明度,尺寸,缩略值,像素格式和是否可编辑。 |
**返回值:**
...
...
@@ -39,7 +39,7 @@ image.createPixelMap(Color, opts)
## image.createPixelMap<sup>8+</sup>
createPixelMap(colors: ArrayBuffer, options: Initializ
e
tionOptions, callback: AsyncCallback
\<
PixelMap>): void
createPixelMap(colors: ArrayBuffer, options: Initializ
a
tionOptions, callback: AsyncCallback
\<
PixelMap>): void
通过属性创建PixelMap,通过回调函数返回结果。
...
...
@@ -50,7 +50,7 @@ createPixelMap(colors: ArrayBuffer, options: InitializetionOptions, callback: As
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------ | ---- | -------------------------- |
| colors | ArrayBuffer | 是 | 颜色数组。 |
| options |
[
Initializ
e
tionOptions
](
#initializationoptions8
)
| 是 | 属性。 |
| options |
[
Initializ
a
tionOptions
](
#initializationoptions8
)
| 是 | 属性。 |
| callback | AsyncCallback
\<
[
PixelMap
](
#pixelmap7
)
> | 是 | 通过回调返回PixelMap对象。 |
**示例:**
...
...
@@ -806,7 +806,7 @@ const imagePackerApi = image.createImagePacker();
### packing
packing(source: ImageSource, option: PackingOption, callback: AsyncCallback
<Array
\<
ArrayBuffer
>
>): void
packing(source: ImageSource, option: PackingOption, callback: AsyncCallback
\<
ArrayBuffer
>): void
图片压缩或重新打包,使用callback形式返回结果。
...
...
@@ -818,7 +818,7 @@ packing(source: ImageSource, option: PackingOption, callback: AsyncCallback<Arra
| -------- | ---------------------------------- | ---- | ---------------------------------- |
| source |
[
ImageSource
](
#imagesource
)
| 是 | 打包的图片源。 |
| option |
[
PackingOption
](
#packingoption
)
| 是 | 设置打包参数。 |
| callback | AsyncCallback
<Array
\<
ArrayBuffer
>
>
| 是 | 获取图片打包回调,返回打包后数据。 |
| callback | AsyncCallback
\<
ArrayBuffer>
| 是 | 获取图片打包回调,返回打包后数据。 |
**示例:**
...
...
@@ -829,7 +829,7 @@ imagePackerApi.packing(imageSourceApi, packOpts, data => {})
### packing
packing(source: ImageSource, option: PackingOption): Promise
<Array
\<
ArrayBuffer
>
>
packing(source: ImageSource, option: PackingOption): Promise
\<
ArrayBuffer
>
图片压缩或重新打包,使用Promise形式返回结果。
...
...
@@ -846,7 +846,7 @@ packing(source: ImageSource, option: PackingOption): Promise<Array\<ArrayBuffer>
| 类型 | 说明 |
| :--------------------------- | :-------------------------------------------- |
| Promise
<Array
\<
ArrayBuffer
>
> | Promise实例,用于异步获取压缩或打包后的数据。 |
| Promise
\<
ArrayBuffer
> | Promise实例,用于异步获取压缩或打包后的数据。 |
**示例:**
...
...
@@ -857,7 +857,7 @@ imagePackerApi.packing(imageSourceApi, packOpts)
.
catch
(
error
=>
{})
```
### packing
### packing
<sup>8+</sup>
packing(source: PixelMap, option: PackingOption, callback: AsyncCallback
\<
ArrayBuffer>): void
...
...
@@ -880,9 +880,9 @@ let packOpts = { format:["image/jpeg"], quality:98 }
imagePackerApi
.
packing
(
pixelMapApi
,
packOpts
,
data
=>
{})
```
### packing
### packing
<sup>8+</sup>
packing(source: PixelMap, option: PackingOption): Promise
<Array
\<
ArrayBuffer
>
>
packing(source: PixelMap, option: PackingOption): Promise
\<
ArrayBuffer
>
图片压缩或重新打包,使用Promise形式返回结果。
...
...
@@ -899,7 +899,7 @@ packing(source: PixelMap, option: PackingOption): Promise<Array\<ArrayBuffer>>
| 类型 | 说明 |
| :--------------------------- | :-------------------------------------------- |
| Promise
<Array
\<
ArrayBuffer
>
> | Promise实例,用于异步获取压缩或打包后的数据。 |
| Promise
\<
ArrayBuffer
> | Promise实例,用于异步获取压缩或打包后的数据。 |
**示例:**
...
...
@@ -1193,7 +1193,7 @@ release(): Promise\<void>
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------------------- | ------------------ | ---- | ---- | -------------------------------------------------- |
| clipRect
<sup>
9+
</sup>
|
[
Region
](
#region
8
)
| 是 | 是 | 要裁剪的图像区域。 |
| clipRect
<sup>
9+
</sup>
|
[
Region
](
#region
7
)
| 是 | 是 | 要裁剪的图像区域。 |
| size
<sup>
9+
</sup>
|
[
Size
](
#size
)
| 是 | 否 | 图像大小。 |
| format
<sup>
9+
</sup>
| number | 是 | 否 | 图像格式,参考
[
PixelMapFormat
](
#pixelmapformat7
)
。 |
...
...
@@ -1301,7 +1301,7 @@ img.release().then(() =>{
| pixels | ArrayBuffer | 是 | 否 | 像素。 |
| offset | number | 是 | 否 | 偏移量。 |
| stride | number | 是 | 否 | 像素间距,stride >= region.size.width
*
4。 |
| region |
[
Region
](
#region
8
)
| 是 | 否 | 区域,按照区域读写。写入的区域宽度加X坐标不能大于原图的宽度,写入的区域高度加Y坐标不能大于原图的高度 |
| region |
[
Region
](
#region
7
)
| 是 | 否 | 区域,按照区域读写。写入的区域宽度加X坐标不能大于原图的宽度,写入的区域高度加Y坐标不能大于原图的高度 |
## ImageInfo
...
...
@@ -1386,11 +1386,11 @@ PixelMap的初始化选项。
| rotate | number | 是 | 是 | 旋转角度。 |
| editable | boolean | 是 | 是 | 是否可编辑。 |
| desiredSize |
[
Size
](
#size
)
| 是 | 是 | 期望输出大小。 |
| desiredRegion |
[
Region
](
#region
8
)
| 是 | 是 | 解码区域。 |
| desiredRegion |
[
Region
](
#region
7
)
| 是 | 是 | 解码区域。 |
| desiredPixelFormat |
[
PixelMapFormat
](
#pixelmapformat7
)
| 是 | 是 | 解码的像素格式。 |
| index | numer | 是 | 是 | 解码图片序号 |
## Region<sup>
8
+</sup>
## Region<sup>
7
+</sup>
表示区域信息。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录