Can I specify scaling when using the cairosvg module inside of python

妖精的绣舞 提交于 2019-12-24 10:58:25

问题


The command line version of cairosvg allows scaling. Here is the output of the help function:

cairosvg -h
usage: cairosvg [-h] [-v] [-f {pdf,png,ps,svg}] [-d DPI] [-W WIDTH]
            [-H HEIGHT] [-s SCALE] [-u] [-o OUTPUT]
            input

CairoSVG - A simple SVG converter based on Cairo.

positional arguments:
   input                 input filename or URL

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         show program\'s version number and exit
  -f {pdf,png,ps,svg}, --format {pdf,png,ps,svg}
                        output format
  -d DPI, --dpi DPI     ratio between 1 inch and 1 pixel
  -W WIDTH, --width WIDTH
                        width of the parent container in pixels
  -H HEIGHT, --height HEIGHT
                        height of the parent container in pixels
  -s SCALE, --scale SCALE
                        output scaling factor

see also cairosvg documentation

How can one specify a scaling factor when using cairosvg2png inside of a Python script?


回答1:


the documentation has been updated at: http://cairosvg.org/documentation/ with API documentation commit




回答2:


I had the same question - the documentation doesn't make this explicit, but as it turns out, it's as simple as passing the scale=2.0 keyword argument to the svg2png method.

import cairosvg

input_fn = '/home/me/input.svg'
output_fn = '/home/me/output.png'

cairosvg.svg2png(url=input_fn, write_to=output_fn, scale=2.0)

This definitely works for me on version 2.0.3.



来源:https://stackoverflow.com/questions/42895772/can-i-specify-scaling-when-using-the-cairosvg-module-inside-of-python

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!