Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
7dbdf0c4
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看板
未验证
提交
7dbdf0c4
编写于
8月 30, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 30, 2023
浏览文件
操作
浏览文件
下载
差异文件
!23447 示例代码整改
Merge pull request !23447 from 朱静茹/master
上级
1992444d
9c3ff94f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
18 addition
and
14 deletion
+18
-14
zh-cn/application-dev/media/image-decoding.md
zh-cn/application-dev/media/image-decoding.md
+7
-7
zh-cn/application-dev/media/image-encoding.md
zh-cn/application-dev/media/image-encoding.md
+9
-5
zh-cn/application-dev/media/image-pixelmap-operation.md
zh-cn/application-dev/media/image-pixelmap-operation.md
+1
-1
zh-cn/application-dev/media/image-tool.md
zh-cn/application-dev/media/image-tool.md
+1
-1
未找到文件。
zh-cn/application-dev/media/image-decoding.md
浏览文件 @
7dbdf0c4
...
@@ -39,8 +39,8 @@
...
@@ -39,8 +39,8 @@
```
ts
```
ts
// Stage模型参考如下代码
// Stage模型参考如下代码
const
context
:
Context
=
getContext
(
this
);
const
context
=
getContext
(
this
);
const
filePath
:
string
=
context
.
cacheDir
+
'
/test.jpg
'
;
const
filePath
=
context
.
cacheDir
+
'
/test.jpg
'
;
const
file
:
File
=
fs
.
openSync
(
filePath
,
fs
.
OpenMode
.
READ_WRITE
);
const
file
:
File
=
fs
.
openSync
(
filePath
,
fs
.
OpenMode
.
READ_WRITE
);
const
fd
:
number
=
file
?.
fd
;
const
fd
:
number
=
file
?.
fd
;
```
```
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
// Stage模型
// Stage模型
const
context
:
Context
=
getContext
(
this
);
const
context
:
Context
=
getContext
(
this
);
// 获取resourceManager资源管理器
// 获取resourceManager资源管理器
const
resourceMgr
:
ResourceManager
=
context
.
resourceManager
;
const
resourceMgr
:
resmgr
.
ResourceManager
=
context
.
resourceManager
;
```
```
```ts
```ts
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
不同模型获取资源管理器的方式不同,获取资源管理器后,再调用resourceMgr.getRawFileContent()获取资源文件的ArrayBuffer。
不同模型获取资源管理器的方式不同,获取资源管理器后,再调用resourceMgr.getRawFileContent()获取资源文件的ArrayBuffer。
```ts
```ts
const fileData :
Content
= await resourceMgr.getRawFileContent('test.jpg');
const fileData :
void
= await resourceMgr.getRawFileContent('test.jpg');
// 获取图片的ArrayBuffer
// 获取图片的ArrayBuffer
const buffer = fileData.buffer;
const buffer = fileData.buffer;
```
```
...
@@ -126,13 +126,13 @@
...
@@ -126,13 +126,13 @@
```
ts
```
ts
const
context
:
Context
=
getContext
(
this
);
const
context
:
Context
=
getContext
(
this
);
// 获取resourceManager资源管理
// 获取resourceManager资源管理
const
resourceMgr
:
ResourceManager
=
context
.
resourceManager
;
const
resourceMgr
:
resmgr
.
ResourceManager
=
context
.
resourceManager
;
```
```
2.
获取rawfile文件夹下test.jpg的ArrayBuffer。
2.
获取rawfile文件夹下test.jpg的ArrayBuffer。
```
ts
```
ts
const
fileData
:
Content
=
await
resourceMgr
.
getRawFileContent
(
'
test.jpg
'
);
const
fileData
:
void
=
await
resourceMgr
.
getRawFileContent
(
'
test.jpg
'
);
// 获取图片的ArrayBuffer
// 获取图片的ArrayBuffer
const
buffer
=
fileData
.
buffer
;
const
buffer
=
fileData
.
buffer
;
```
```
...
@@ -140,7 +140,7 @@
...
@@ -140,7 +140,7 @@
3.
创建imageSource。
3.
创建imageSource。
```
ts
```
ts
const
imageSource
:
ImageSource
=
image
.
createImageSource
(
buffer
);
const
imageSource
:
resmgr
.
ImageSource
=
image
.
createImageSource
(
buffer
);
```
```
4.
创建PixelMap。
4.
创建PixelMap。
...
...
zh-cn/application-dev/media/image-encoding.md
浏览文件 @
7dbdf0c4
...
@@ -20,7 +20,11 @@
...
@@ -20,7 +20,11 @@
format为图像的编码格式;quality为图像质量,范围从0-100,100为最佳质量。
format为图像的编码格式;quality为图像质量,范围从0-100,100为最佳质量。
```
ts
```
ts
let
packOpts
:
Context
=
{
format
:
"
image/jpeg
"
,
quality
:
98
};
class
PackOpts
{
format
:
string
=
""
quality
:
number
=
0
}
let
packOpts
:
PackOpts
=
{
format
:
"
image/jpeg
"
,
quality
:
98
};
```
```
3.
[
创建PixelMap对象或创建ImageSource
](
image-decoding.md
)
对象。
3.
[
创建PixelMap对象或创建ImageSource
](
image-decoding.md
)
对象。
...
@@ -30,9 +34,9 @@
...
@@ -30,9 +34,9 @@
方法一:通过PixelMap进行编码。
方法一:通过PixelMap进行编码。
```
ts
```
ts
imagePackerApi
.
packing
(
pixelMap
:
PixelMap
,
packOpts
).
then
(
data
=>
{
imagePackerApi
.
packing
(
pixelMap
:
PixelMap
,
packOpts
:
PackingOption
).
then
(
data
=>
{
// data 为打包获取到的文件流,写入文件保存即可得到一张图片
// data 为打包获取到的文件流,写入文件保存即可得到一张图片
}).
catch
(
error
:
void
=>
{
}).
catch
(
error
=>
{
console
.
error
(
'
Failed to pack the image. And the error is:
'
+
error
);
console
.
error
(
'
Failed to pack the image. And the error is:
'
+
error
);
})
})
```
```
...
@@ -40,9 +44,9 @@
...
@@ -40,9 +44,9 @@
方法二:通过imageSource进行编码。
方法二:通过imageSource进行编码。
```
ts
```
ts
imagePackerApi
.
packing
(
imageSource
,
packOpts
).
then
(
data
=>
{
imagePackerApi
.
packing
(
imageSource
:
ImageSource
,
packOpts
:
PackingOption
).
then
(
data
=>
{
// data 为打包获取到的文件流,写入文件保存即可得到一张图片
// data 为打包获取到的文件流,写入文件保存即可得到一张图片
}).
catch
(
error
:
void
=>
{
}).
catch
(
error
=>
{
console
.
error
(
'
Failed to pack the image. And the error is:
'
+
error
);
console
.
error
(
'
Failed to pack the image. And the error is:
'
+
error
);
})
})
```
```
zh-cn/application-dev/media/image-pixelmap-operation.md
浏览文件 @
7dbdf0c4
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
pixels
:
new
ArrayBuffer
(
8
),
pixels
:
new
ArrayBuffer
(
8
),
offset
:
0
,
offset
:
0
,
stride
:
8
,
stride
:
8
,
region
:
{
size
:
{
height
:
1
,
width
:
2
},
x
:
0
,
y
:
0
}
region
:
{
size
:
{
height
:
1
,
width
:
2
},
x
:
0
,
y
:
0
}
}
}
pixelMap
.
readPixels
(
area
).
then
(()
=>
{
pixelMap
.
readPixels
(
area
).
then
(()
=>
{
console
.
info
(
'
Succeeded in reading the image data in the area.
'
);
console
.
info
(
'
Succeeded in reading the image data in the area.
'
);
...
...
zh-cn/application-dev/media/image-tool.md
浏览文件 @
7dbdf0c4
...
@@ -37,7 +37,7 @@ EXIF信息的读取与编辑相关API的详细介绍请参见[API参考](../refe
...
@@ -37,7 +37,7 @@ EXIF信息的读取与编辑相关API的详细介绍请参见[API参考](../refe
// 编辑EXIF信息
// 编辑EXIF信息
imageSource
.
modifyImageProperty
(
'
ImageWidth
'
,
'
120
'
).
then
(()
=>
{
imageSource
.
modifyImageProperty
(
'
ImageWidth
'
,
'
120
'
).
then
(()
=>
{
const
width
:
number
=
imageSource
.
getImageProperty
(
"
ImageWidth
"
);
const
width
:
Promise
<
string
>
=
imageSource
.
getImageProperty
(
"
ImageWidth
"
);
console
.
info
(
'
The new imageWidth is
'
+
width
);
console
.
info
(
'
The new imageWidth is
'
+
width
);
})
})
```
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录