Python 中的服务器端 SVG 到 PNG(或其他图像格式)

问题描述 投票:0回答:5

目前我正在使用 rsvg 加载 svg(从字符串,而不是从文件)并绘制到开罗。有人知道更好的方法吗?我在应用程序的其他地方使用 PIL,但我不知道如何使用 PIL 来做到这一点。

python png svg
5个回答
14
投票

这是我目前拥有的:

import cairo
import rsvg

def convert(data, ofile, maxwidth=0, maxheight=0):

    svg = rsvg.Handle(data=data)

    x = width = svg.props.width
    y = height = svg.props.height
    print "actual dims are " + str((width, height))
    print "converting to " + str((maxwidth, maxheight))

    yscale = xscale = 1

    if (maxheight != 0 and width > maxwidth) or (maxheight != 0 and height > maxheight):
        x = maxwidth
        y = float(maxwidth)/float(width) * height
        print "first resize: " + str((x, y))
        if y > maxheight:
            y = maxheight
            x = float(maxheight)/float(height) * width
            print "second resize: " + str((x, y))
        xscale = float(x)/svg.props.width
        yscale = float(y)/svg.props.height

    surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, x, y)
    context = cairo.Context(surface)
    context.scale(xscale, yscale)
    svg.render_cairo(context)
    surface.write_to_png(ofile)

4
投票

imagemagic怎么样? - http://www.imagemagick.org/script/magick-vector-graphics.php 它可以从标准输入/标准输出读取/写入,因此即使您不想使用,也可以将其与您的应用程序集成文件


4
投票

您也可以使用 PhantomJS(参见 http://phantomjs.org/screen-capture.html

来自外壳:

phantomjs rasterize.js http://ariya.github.com/svg/tiger.svg tiger.png

或者从Python使用selenium:

from selenium import webdriver  
driver = webdriver.PhantomJS()
driver.set_window_size(1024, 768) 
driver.get('http://ariya.github.com/svg/tiger.svg')
driver.save_screenshot('tiger.png')

3
投票

我安装了 inkscape,所以我只是使用 inkscape -f file.svg -e file.png

将进程外包给 inkscape 命令

使用此代码:

import subprocess
inkscape_dir=r"C:\Program Files (x86)\Inkscape"
assert os.path.isdir(inkscape_dir)
os.chdir(inkscape_dir)
subprocess.Popen(['inkscape.exe',"-f",fname,"-e",fname_png])

我使用的是 Windows 7,并遇到 Windows 5 错误 [访问被拒绝](或类似的情况),直到我切换到 inkscape 目录


0
投票
import pygame

surface = pygame.image.load("shrubbery.svg")
pygame.image.save(surface, "shrubbery.png")

WebP、AVIF 和 JPEG XL 正在取代 PNG。

© www.soinside.com 2019 - 2024. All rights reserved.