Z.H.
Z.H.
Would like to know if there is a workaround or not. Thanks in advance!
## 1. Export directly ```python from rich.console import Console from rich.table import Table table = Table(title="测试") table.add_column("Title 测试") table.add_column("Title 2 测试") table.add_row("测试","test") table.add_row("test","测试") console = Console(record=True) console.print(table) console.save_svg('output.svg') ``` ...
> Hey @onlyacat, I've added a `font_aspect_ratio` to `export_svg` and `save_svg`. If you use a custom font, you can use this new parameter to modify the default `0.61` value. That'll...
/cc @AstroProfundis PTAL
参考这个 #1863