Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
c6a78eba
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,发现更多精彩内容 >>
未验证
提交
c6a78eba
编写于
9月 06, 2023
作者:
O
openharmony_ci
提交者:
Gitee
9月 06, 2023
浏览文件
操作
浏览文件
下载
差异文件
!24032 image文档适配Arkts
Merge pull request !24032 from 刘关鹏/master
上级
215a0896
fbbe9a0f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
24 addition
and
19 deletion
+24
-19
zh-cn/application-dev/media/image-transformation-native.md
zh-cn/application-dev/media/image-transformation-native.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-image.md
zh-cn/application-dev/reference/apis/js-apis-image.md
+20
-15
未找到文件。
zh-cn/application-dev/media/image-transformation-native.md
浏览文件 @
c6a78eba
...
...
@@ -108,7 +108,7 @@
@Component
struct Index {
@State message: string = 'IMAGE'
@State _PixelMap
: image.PixelMap = undefined
@State _PixelMap
: image.PixelMap | undefined = undefined;
build() {
Row() {
...
...
@@ -117,10 +117,10 @@
.fontSize(50)
.fontWeight(FontWeight.Bold)
.onClick(() => {
const color = new ArrayBuffer(96);
let opts = { alphaType: 0, editable: true, pixelFormat: 4, scaleMode: 1, size: { height: 4, width: 6 } }
const color
: ArrayBuffer
= new ArrayBuffer(96);
let opts
: image.InitializationOptions
= { alphaType: 0, editable: true, pixelFormat: 4, scaleMode: 1, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts)
.then(
pixelmap
=> {
.then(
(pixelmap : image.PixelMap)
=> {
this._PixelMap = pixelmap;
})
...
...
zh-cn/application-dev/reference/apis/js-apis-image.md
浏览文件 @
c6a78eba
...
...
@@ -66,6 +66,7 @@ createPixelMap(colors: ArrayBuffer, options: InitializationOptions, callback: As
**示例:**
```
ts
import
{
BusinessError
}
from
'
@ohos.base
'
const
color
:
ArrayBuffer
=
new
ArrayBuffer
(
96
);
//96为需要创建的像素buffer大小,取值为:height * width *4
let
bufferArr
:
Uint8Array
=
new
Uint8Array
(
color
);
let
opts
:
image
.
InitializationOptions
=
{
editable
:
true
,
pixelFormat
:
3
,
size
:
{
height
:
4
,
width
:
6
}
}
...
...
@@ -860,7 +861,7 @@ crop(region: Region, callback: AsyncCallback\<void>): void
```
ts
async
function
Demo
()
{
await
pixelmap
.
crop
({
x
:
0
,
y
:
0
,
size
:
{
height
:
100
,
width
:
100
}
});
await
pixelmap
.
crop
({
x
:
0
,
y
:
0
,
size
:
{
height
:
100
,
width
:
100
}
}
as
image
.
Region
);
}
```
...
...
@@ -888,7 +889,7 @@ crop(region: Region): Promise\<void>
```
ts
async
function
Demo
()
{
await
pixelmap
.
crop
({
x
:
0
,
y
:
0
,
size
:
{
height
:
100
,
width
:
100
}
});
await
pixelmap
.
crop
({
x
:
0
,
y
:
0
,
size
:
{
height
:
100
,
width
:
100
}
}
as
image
.
Region
);
}
```
...
...
@@ -987,7 +988,7 @@ marshalling(sequence: rpc.MessageSequence): void
```
ts
import
image
from
'
@ohos.multimedia.image
'
import
rpc
from
'
@ohos.rpc
'
class
MySequence
{
class
MySequence
implements
rpc
.
Parcelable
{
pixel_map
;
constructor
(
pixelmap
:
image
.
PixelMap
)
{
this
.
pixel_map
=
pixelmap
;
...
...
@@ -1016,13 +1017,15 @@ async function Demo() {
size
:
{
height
:
4
,
width
:
6
},
alphaType
:
1
}
let
pixelMap
;
let
pixelMap
:
image
.
PixelMap
|
undefined
=
undefined
;
await
image
.
createPixelMap
(
color
,
opts
).
then
((
pixelmap
:
image
.
PixelMap
)
=>
{
pixelMap
=
pixelmap
;
})
let
parcelable
:
MySequence
=
new
MySequence
(
pixelMap
);
let
data
:
rpc
.
MessageSequence
=
rpc
.
MessageSequence
.
create
();
data
.
writeParcelable
(
parcelable
:
rpc
.
Parcelable
);
if
(
pixelMap
!=
undefined
)
{
let
parcelable
:
MySequence
=
new
MySequence
(
pixelMap
);
let
data
:
rpc
.
MessageSequence
=
rpc
.
MessageSequence
.
create
();
data
.
writeParcelable
(
parcelable
:
rpc
.
Parcelable
);
}
}
```
...
...
@@ -1061,7 +1064,7 @@ unmarshalling(sequence: rpc.MessageSequence): Promise\<PixelMap>
```
ts
import
image
from
'
@ohos.multimedia.image
'
import
rpc
from
'
@ohos.rpc
'
class
MySequence
{
class
MySequence
implements
rpc
.
Parcelable
{
pixel_map
;
constructor
(
pixelmap
:
image
.
PixelMap
)
{
this
.
pixel_map
=
pixelmap
;
...
...
@@ -1090,13 +1093,15 @@ async function Demo() {
size
:
{
height
:
4
,
width
:
6
},
alphaType
:
1
}
let
pixelMap
;
let
pixelMap
:
image
.
PixelMap
|
undefined
=
undefined
;
await
image
.
createPixelMap
(
color
,
opts
).
then
((
pixelmap
:
image
.
PixelMap
)
=>
{
pixelMap
=
pixelmap
;
})
let
ret
:
MySequence
=
new
MySequence
(
pixelMap
);
let
data
:
rpc
.
MessageSequence
=
rpc
.
MessageSequence
.
create
();
await
data
.
readParcelable
(
ret
:
rpc
.
Parcelable
);
if
(
pixelMap
!=
undefined
)
{
let
ret
:
MySequence
=
new
MySequence
(
pixelMap
);
let
data
:
rpc
.
MessageSequence
=
rpc
.
MessageSequence
.
create
();
await
data
.
readParcelable
(
ret
:
rpc
.
Parcelable
);
}
}
```
...
...
@@ -1180,7 +1185,7 @@ const imageSourceApi : image.ImageSource = image.createImageSource(path);
//FA模型
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
const
context
:
Context
=
featureAbility
.
getContext
();
const
context
:
_
Context
=
featureAbility
.
getContext
();
const
path
:
string
=
context
.
getCacheDir
()
+
"
/test.jpg
"
;
const
imageSourceApi
:
image
.
ImageSource
=
image
.
createImageSource
(
path
);
```
...
...
@@ -2116,7 +2121,7 @@ packing(source: ImageSource, option: PackingOption, callback: AsyncCallback\<Arr
```
ts
const
imageSourceApi
:
image
.
ImageSource
=
image
.
createImageSource
(
0
);
let
packOpts
:
image
.
PackingOption
=
{
format
:
"
image/jpeg
"
,
quality
:
98
};
imagePackerApi
.
packing
(
imageSourceApi
,
packOpts
,
data
:
ArrayBuffer
=>
{})
imagePackerApi
.
packing
(
imageSourceApi
,
packOpts
,
(
data
:
ArrayBuffer
)
=>
{})
```
### packing
...
...
@@ -2697,7 +2702,7 @@ queueImage(interface: Image): Promise\<void>
import
{
BusinessError
}
from
'
@ohos.base
'
creator
.
dequeueImage
().
then
((
img
:
image
.
Image
)
=>
{
//绘制图片
img
.
getComponent
(
4
).
then
(
component
:
image
.
Component
=>
{
img
.
getComponent
(
4
).
then
(
(
component
:
image
.
Component
)
=>
{
let
bufferArr
:
Uint8Array
=
new
Uint8Array
(
component
.
byteBuffer
);
for
(
let
i
=
0
;
i
<
bufferArr
.
length
;
i
+=
4
)
{
bufferArr
[
i
]
=
0
;
//B
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录