5 lines
125 B
Python
5 lines
125 B
Python
def render_png_from_svg(svg: str) -> bytes:
|
|
import cairosvg
|
|
|
|
return cairosvg.svg2png(bytestring=svg.encode("utf-8"))
|