generated from napi-rs/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
LongYinan
committed
Dec 31, 2021
1 parent
fb88351
commit d80ac6b
Showing
14 changed files
with
227 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import test from 'ava' | ||
import { init, setCanvasCreator } from 'echarts' | ||
|
||
import { createCanvas } from '../index.js' | ||
import { snapshotImage } from './image-snapshot' | ||
|
||
test('echarts-start', async (t) => { | ||
if (process.platform !== 'darwin') { | ||
t.pass() | ||
return | ||
} | ||
const canvas = createCanvas(800, 600) | ||
// @ts-expect-error | ||
setCanvasCreator(() => canvas) | ||
// @ts-expect-error | ||
const chart = init(canvas) | ||
chart.setOption({ | ||
title: { | ||
text: 'ECharts 入门示例', | ||
}, | ||
tooltip: {}, | ||
legend: { | ||
data: ['销量'], | ||
}, | ||
xAxis: { | ||
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'], | ||
}, | ||
yAxis: {}, | ||
series: [ | ||
{ | ||
name: '销量', | ||
type: 'bar', | ||
data: [5, 20, 36, 10, 10, 20], | ||
}, | ||
], | ||
}) | ||
|
||
await snapshotImage(t, { canvas, ctx: canvas.getContext('2d') }) | ||
}) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,109 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<script src="/node_modules/canvaskit-wasm/bin/canvaskit.js"></script> | ||
<title>Canvas</title> | ||
</head> | ||
|
||
<body> | ||
<style type="text/css"> | ||
@font-face { | ||
font-family: 'Iosevka Slab'; | ||
src: url('/__test__/fonts/iosevka-slab-regular.ttf'); | ||
} | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<script src="/node_modules/canvaskit-wasm/bin/canvaskit.js"></script> | ||
<title>Canvas</title> | ||
</head> | ||
|
||
body { | ||
font-family: 'Iosevka Slab'; | ||
} | ||
<body> | ||
<style type="text/css"> | ||
@font-face { | ||
font-family: 'Iosevka Slab'; | ||
src: url('/__test__/fonts/iosevka-slab-regular.ttf'); | ||
} | ||
|
||
canvas { | ||
margin-top: 100px; | ||
} | ||
</style> | ||
<canvas width="1024" height="768" id="canvas"></canvas> | ||
<canvas width="1024" height="768" id="canvas-text"></canvas> | ||
<canvas width="512" height="512" id="regression"></canvas> | ||
<img width="200" height="200" id="firefox" src="/__test__/fixtures/filter-combine-contrast-brightness.jpeg" /> | ||
<script> | ||
setTimeout(() => { | ||
const canvas = document.getElementById('canvas') | ||
/** | ||
* @type {CanvasRenderingContext2D} | ||
*/ | ||
const ctx = canvas.getContext('2d') | ||
ctx.fillStyle = 'yellow' | ||
ctx.fillRect(0, 0, canvas.width, canvas.height) | ||
ctx.strokeStyle = 'black' | ||
ctx.lineWidth = 3 | ||
ctx.font = '50px Iosevka Slab' | ||
body { | ||
font-family: 'Iosevka Slab'; | ||
} | ||
|
||
canvas { | ||
margin-top: 100px; | ||
} | ||
</style> | ||
<canvas width="1024" height="768" id="canvas"></canvas> | ||
<canvas width="1024" height="768" id="canvas-text"></canvas> | ||
<canvas width="512" height="512" id="regression"></canvas> | ||
<canvas width="512" height="512" id="text"></canvas> | ||
<img width="200" height="200" id="firefox" src="/__test__/fixtures/filter-combine-contrast-brightness.jpeg" /> | ||
<script> | ||
setTimeout(() => { | ||
const canvas = document.getElementById('canvas') | ||
/** | ||
* @type {CanvasRenderingContext2D} | ||
*/ | ||
const ctx = canvas.getContext('2d') | ||
ctx.fillStyle = 'yellow' | ||
ctx.fillRect(0, 0, canvas.width, canvas.height) | ||
ctx.strokeStyle = 'black' | ||
ctx.lineWidth = 3 | ||
ctx.font = '50px Iosevka Slab' | ||
|
||
const baselines = ['top', 'hanging', 'middle', 'alphabetic', 'ideographic', 'bottom'] | ||
const baselines = ['top', 'hanging', 'middle', 'alphabetic', 'ideographic', 'bottom'] | ||
|
||
baselines.forEach(function (baseline) { | ||
ctx.textBaseline = baseline | ||
const metrics = ctx.measureText('@napi-rs/canvas') | ||
console.info(baseline, metrics) | ||
}) | ||
baselines.forEach(function (baseline) { | ||
ctx.textBaseline = baseline | ||
const metrics = ctx.measureText('@napi-rs/canvas') | ||
console.info(baseline, metrics) | ||
}) | ||
|
||
ctx.strokeText('skr canvas', 50, 150) | ||
ctx.strokeText('@napi-rs/canvas', 50, 300) | ||
}, 300) | ||
ctx.strokeText('skr canvas', 50, 150) | ||
ctx.strokeText('@napi-rs/canvas', 50, 300) | ||
}, 300) | ||
|
||
setTimeout(() => { | ||
const canvas = document.getElementById('canvas-text') | ||
/** | ||
* @type {CanvasRenderingContext2D} | ||
*/ | ||
const ctx = canvas.getContext('2d') | ||
ctx.fillStyle = 'yellow' | ||
ctx.fillRect(0, 0, canvas.width, canvas.height) | ||
const baselines = ['top', 'hanging', 'middle', 'alphabetic', 'ideographic', 'bottom'] | ||
ctx.font = '36px Iosevka Slab' | ||
ctx.strokeStyle = 'red' | ||
ctx.fillStyle = 'black' | ||
setTimeout(() => { | ||
const canvas = document.getElementById('canvas-text') | ||
/** | ||
* @type {CanvasRenderingContext2D} | ||
*/ | ||
const ctx = canvas.getContext('2d') | ||
ctx.fillStyle = 'yellow' | ||
ctx.fillRect(0, 0, canvas.width, canvas.height) | ||
const baselines = ['top', 'hanging', 'middle', 'alphabetic', 'ideographic', 'bottom'] | ||
ctx.font = '36px Iosevka Slab' | ||
ctx.strokeStyle = 'red' | ||
ctx.fillStyle = 'black' | ||
|
||
baselines.forEach(function (baseline, index) { | ||
ctx.textBaseline = baseline | ||
const y = 75 + index * 75 | ||
ctx.beginPath() | ||
ctx.moveTo(0, y + 0.5) | ||
ctx.lineTo(550, y + 0.5) | ||
ctx.stroke() | ||
ctx.fillText('Abcdefghijklmnop (' + baseline + ')', 0, y) | ||
}) | ||
}, 300) | ||
</script> | ||
<script> | ||
setTimeout(() => { | ||
const canvas = document.getElementById('regression') | ||
const ctx = canvas.getContext('2d') | ||
ctx.filter = 'contrast(175%) brightness(103%)' | ||
const image = document.querySelector('#firefox') | ||
ctx.drawImage(image, 0, 0) | ||
}, 1000) | ||
</script> | ||
|
||
<script> | ||
setTimeout(() => { | ||
const canvas = document.getElementById('text') | ||
const ctx = canvas.getContext('2d') | ||
for (const align of ['center', 'end', 'left', 'right', 'start']) { | ||
const x = canvas.width / 2 | ||
ctx.strokeStyle = 'black' | ||
ctx.moveTo(x, 0) | ||
ctx.lineTo(x, canvas.height) | ||
ctx.stroke() | ||
ctx.textAlign = align | ||
ctx.font = '16px Iosevka Slab' | ||
ctx.fillText('Hello Canvas', x, 200) | ||
} | ||
}, 1000) | ||
</script> | ||
</body> | ||
|
||
baselines.forEach(function (baseline, index) { | ||
ctx.textBaseline = baseline | ||
const y = 75 + index * 75 | ||
ctx.beginPath() | ||
ctx.moveTo(0, y + 0.5) | ||
ctx.lineTo(550, y + 0.5) | ||
ctx.stroke() | ||
ctx.fillText('Abcdefghijklmnop (' + baseline + ')', 0, y) | ||
}) | ||
}, 300) | ||
</script> | ||
<script> | ||
setTimeout(() => { | ||
const canvas = document.getElementById('regression') | ||
const ctx = canvas.getContext('2d') | ||
ctx.filter = 'contrast(175%) brightness(103%)' | ||
const image = document.querySelector('#firefox') | ||
ctx.drawImage(image, 0, 0) | ||
}, 1000) | ||
</script> | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nightly-2021-11-30 | ||
nightly-2021-12-05 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d80ac6b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
Draw house#skia-canvas
18.1
ops/sec (±0.38%
)18
ops/sec (±1.7%
)0.99
Draw house#node-canvas
17.9
ops/sec (±0.17%
)21
ops/sec (±1.18%
)1.17
Draw house#@napi-rs/skia
21.4
ops/sec (±0.1%
)20
ops/sec (±0.55%
)0.93
Draw gradient#skia-canvas
17.2
ops/sec (±0.21%
)17
ops/sec (±0.43%
)0.99
Draw gradient#node-canvas
17
ops/sec (±1.56%
)21
ops/sec (±1.05%
)1.24
Draw gradient#@napi-rs/skia
20.5
ops/sec (±0.3%
)19
ops/sec (±1.24%
)0.93
This comment was automatically generated by workflow using github-action-benchmark.