Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
65c59af0
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
65c59af0
编写于
7月 03, 2024
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(canvas): 增加 toBlob/toDataURL 测试
上级
f2559a38
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
38 addition
and
9 deletion
+38
-9
pages/component/canvas/canvas.test.js
pages/component/canvas/canvas.test.js
+20
-0
pages/component/canvas/canvas.uvue
pages/component/canvas/canvas.uvue
+18
-9
未找到文件。
pages/component/canvas/canvas.test.js
0 → 100644
浏览文件 @
65c59af0
let
page
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
'
/pages/component/canvas/canvas
'
)
await
page
.
waitFor
(
2000
)
})
describe
(
'
Canvas.uvue
'
,
()
=>
{
it
(
'
toBlob
'
,
async
()
=>
{
if
(
process
.
env
.
uniTestPlatformInfo
.
toLowerCase
().
startsWith
(
'
web
'
))
{
const
{
testToBlobResult
,
testToDataURLResult
}
=
await
page
.
data
()
expect
(
testToBlobResult
).
toBe
(
true
)
expect
(
testToDataURLResult
).
toBe
(
true
)
}
})
})
pages/component/canvas/canvas.uvue
浏览文件 @
65c59af0
...
...
@@ -33,6 +33,9 @@
canvasWidth: 0,
canvasHeight: 0,
image: null as Image | null,
// 仅测试
testToBlobResult: false,
testToDataURLResult: false
}
},
onReady() {
...
...
@@ -41,6 +44,13 @@
hidpi(canvas);
this.canvasWidth = this.canvasContext!.canvas.width;
this.canvasHeight = this.canvasContext!.canvas.height;
// #ifdef WEB
canvas.toBlob((blob : Blob) => {
this.testToBlobResult = (blob.size > 0 && blob.type == 'image/jpeg')
}, 'image/jpeg', 0.95)
this.testToDataURLResult = canvas.toDataURL().startsWith('data:image/png;base64')
// #endif
},
methods: {
handleCanvasButton(name : string) {
...
...
@@ -630,15 +640,14 @@
context.restore()
},
restore() {
const context = this.canvasContext!
;[3, 2, 1].forEach((item) => {
context.save()
context.beginPath()
context.scale(item, item)
context.rect(10, 10, 100, 100)
context.stroke()
context.restore()
const context = this.canvasContext!;
[3, 2, 1].forEach((item) => {
context.save()
context.beginPath()
context.scale(item, item)
context.rect(10, 10, 100, 100)
context.stroke()
context.restore()
})
},
drawImageLocal() {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录