Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
html-shot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
劳工
html-shot
Commits
5b16ae67
Commit
5b16ae67
authored
Jan 21, 2021
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
作用dpr
parent
2588c85c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
184 additions
and
162 deletions
+184
-162
dom-parser.ts
src/dom-parser.ts
+3
-3
toCanvas.ts
src/toCanvas.ts
+177
-157
test.html
test.html
+3
-2
toCanvas.d.ts
types/toCanvas.d.ts
+1
-0
No files found.
src/dom-parser.ts
View file @
5b16ae67
...
...
@@ -60,15 +60,15 @@ export function parseDom(el: HTMLElement = document.body) {
break
;
}
if
(
!
bound
&&
childNode
.
getBoundingClientRect
)
{
if
(
!
bound
&&
childNode
.
getBoundingClientRect
)
{
bound
=
childNode
.
getBoundingClientRect
();
}
let
styles
=
getStylesWithoutDefaults
(
node
||
childNode
);
if
(
!
isText
)
{
for
(
let
skey
of
commonStyleKeys
)
{
if
(
commonStyleKeys
.
indexOf
(
skey
)
<
0
)
{
for
(
let
skey
of
commonStyleKeys
)
{
if
(
commonStyleKeys
.
indexOf
(
skey
)
<
0
)
{
continue
}
...
...
src/toCanvas.ts
View file @
5b16ae67
This diff is collapsed.
Click to expand it.
test.html
View file @
5b16ae67
...
...
@@ -40,10 +40,11 @@
<img
class=
"avatar"
src=
"//yun.duiba.com.cn/aurora/14e3d0fa0e1ff54553a2c8c094b1caffd90f0a43.png"
/>
<canvas
id=
"canvas"
style=
"position: absolute; left: 10px; top: 10px;"
></canvas>
<p
class=
"ppp"
>
a
<br/>
bcde
<span
style=
"background-color: rgba(0,255,0,0.5);"
>
span
</span>
fghij
a
<br/>
bcdefghij
</p>
</div>
<!--
<span style="background-color: rgba(0,255,0,0.5);">span</span>-->
<script>
let
canvas
=
document
.
getElementById
(
'canvas'
);
let
context
=
canvas
.
getContext
(
'2d'
);
...
...
types/toCanvas.d.ts
View file @
5b16ae67
...
...
@@ -36,6 +36,7 @@ interface INodeData {
fontStyle
?:
"normal"
|
"italic"
|
"oblique"
;
}
export
interface
RenderOptions
{
scale
?:
number
;
type
?:
'canvas'
|
'jpeg'
|
'png'
;
quality
?:
number
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment