python - 使用 Gimp Python 插件导出所有 SVG 路径

标签 python svg gimp gimpfu

我想编写一个 Gimp-Python 插件,以便从当前图像中导出所有 SVG 路径。这看起来很简单,但我被 pdb 调用困住了,我可能没有正确调用过程,所以我需要你的帮助。

这是我的代码:

#!/usr/bin/env python

from gimpfu import *

def exportToSvg(img, layer) :
    gimp.pdb.vectors_export_to_file(img,"C:/Users/Public/Documents/output.svg",0)

register(
    "ExportToSvg",    
    "Export all SVG paths",   
    "Export all SVG paths from current image",
    "My Name", 
    "My company", 
    "2015",
    "<Image>/MyScripts/Export to svg", 
    "*", 
    [], 
    [],
    exportToSvg)

main()

打开 Gimp 并加载图像后,当我点击我的插件时,我收到此错误:

调用 « gimp-procedural-db-proc-info » 时出错: 程序« vectors-export-to-file » 未找到

当我在 Gimp PDB 中搜索时,我可以找到“gimp-vectors-export-to-file”,这是什么问题? 我应该如何调用这个程序?

最佳答案

我已经将这个问题改编成一个 gimp python 插件,该插件将此功能公开为 svg 导出格式。

我已经把它变成了一个要点,欢迎提出请求,这个要点可能比这个答案更有特色。

https://gist.github.com/thorsummoner/3ad6f806f1c08246f240222a3c0a5c47

将此源​​复制到 gimp 插件目录(并使其可执行)。

在我的系统上是 ~/.gimp-2.8/plug-ins/file-svg-export.py,在 Windows 上它可能在 %appdata% 中.

#!/usr/bin/env python

# GIMP Plug-in for Simple SVG Exports

# Copyright (C) 2016 by Dylan Grafmyre <thorsummoner@live.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.

# based on an openraster plugin by 
# https://git.gnome.org/browse/gimp/tree/plug-ins/pygimp/plug-ins/file-openraster.py?h=GIMP_2_8_16

import gimpfu

def register_save_handlers():
    gimpfu.gimp.register_save_handler('file-svg-save', 'svg', '')

def save_svg(img, drawable, filename, raw_filename):
    gimpfu.gimp.pdb.gimp_vectors_export_to_file(img, filename, None)

gimpfu.register(
    'file-svg-save', #name
    'save an SVG (.svg) file', #description
    'save an SVG (.svg) file',
    'Dylan Grafmyre', #author
    'Dylan Grafmyre', #copyright
    '2016', #year
    'SVG',
    '*',
    [   #input args. Format (type, name, description, default [, extra])
        (gimpfu.PF_IMAGE, "image", "Input image", None),
        (gimpfu.PF_DRAWABLE, "drawable", "Input drawable", None),
        (gimpfu.PF_STRING, "filename", "The name of the file", None),
        (gimpfu.PF_STRING, "raw-filename", "The name of the file", None),
    ],
    [], #results. Format (type, name, description)
    save_svg, #callback
    on_query = register_save_handlers,
    menu = '<Save>'
)

gimpfu.main()

要简单地使用 File -> Export As,your file.svg

它将所有路径导出到单个 svg 文件。

关于python - 使用 Gimp Python 插件导出所有 SVG 路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29148488/

相关文章:

python - 两段代码(关于 python GIL)有什么区别?

Python:截断字节缓冲区时的零复制

html - 如何在 HTML 中很好地管理 SVG 内联

css - 如何将动画渐变添加到 svg 路径?

OpenCV 的 Sobel 过滤器 - 为什么它看起来如此糟糕,尤其是与 Gimp 相比?

python - 创建循环?

python - 从主进程和派生进程使用 matplotlib

python - 在 GIMP 中哪里可以选择我的个人插件?

java - 解析 SVG - java.net.MalformedURLException : no protocol: <? xml 版本 ="1.0"编码 ="UTF-8"独立 ="no"?>

html - 如何将 .png 图像文件中的前景色从蓝色转换为黑色?