-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#592 Render linked SVG images with unit (px, cm, em, etc) sizes.
We do this by firing up the CSS parser for values of the width and height attributes that are not plain numbers. With test proof (output identical to Chrome).
- Loading branch information
Showing
8 changed files
with
83 additions
and
22 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
3 changes: 3 additions & 0 deletions
3
openhtmltopdf-examples/src/main/resources/demos/images/half-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.6 KB
...-examples/src/main/resources/visualtest/expected/issue-592-svg-linked-image-unit-size.pdf
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
...pdf-examples/src/main/resources/visualtest/html/issue-592-svg-linked-image-unit-size.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<head> | ||
<style> | ||
@page { | ||
size: 250px 6cm; | ||
margin: 0; | ||
} | ||
img { | ||
border: 1px solid red; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<img src="../../demos/images/half-circle.svg" alt="Half circle" /> | ||
</body> | ||
</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
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