Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jvoisin
mat2
Commits
12582ba2
Commit
12582ba2
authored
Mar 16, 2022
by
jvoisin
Browse files
Try to use modern rsvg functions when we can
parent
35092562
Pipeline
#83335
failed with stages
in 4 minutes and 7 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
libmat2/images.py
View file @
12582ba2
...
...
@@ -30,12 +30,23 @@ class SVGParser(exiftool.ExiftoolParser):
svg
=
Rsvg
.
Handle
.
new_from_file
(
self
.
filename
)
except
GLib
.
GError
:
raise
ValueError
dimensions
=
svg
.
get_dimensions
()
surface
=
cairo
.
SVGSurface
(
self
.
output_filename
,
dimensions
.
height
,
dimensions
.
width
)
try
:
_
,
_
,
_
,
_
,
has_viewbox
,
viewbox
=
svg
.
get_intrinsic_dimensions
()
if
has_viewbox
is
False
:
raise
ValueError
_
,
width
,
height
=
svg
.
get_intrinsic_size_in_pixels
()
except
AttributeError
:
dimensions
=
svg
.
get_dimensions
()
height
,
width
=
dimensions
.
height
,
dimensions
.
width
surface
=
cairo
.
SVGSurface
(
self
.
output_filename
,
height
,
width
)
context
=
cairo
.
Context
(
surface
)
svg
.
render_cairo
(
context
)
try
:
svg
.
render_document
(
context
,
viewbox
)
except
AttributeError
:
svg
.
render_cairo
(
context
)
surface
.
finish
()
return
True
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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