SVG: Use ‘multiply’ blend mode

This commit is contained in:
fruchti 2022-12-18 12:48:57 +01:00
parent 4e973976db
commit 6b64067f0b

View file

@ -179,6 +179,7 @@ class SVGPlotter(Plotter):
self.context.scale(dpi / 25.4, dpi / 25.4)
self.context.set_line_cap(cairo.LINE_CAP_ROUND)
self.context.set_line_join(cairo.LINE_JOIN_ROUND)
self.context.set_operator(cairo.OPERATOR_MULTIPLY)
super().__init__(paper, line_width, colour)