| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/inkscape/extensions/ |
Upload File : |
#!/usr/bin/env python
# coding=utf-8
#
# Copyright (c) 2009 - Jos Hirth, kaioa.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 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
Export a gimp pallet file (.gpl)
"""
import inkex
from inkex import ShapeElement, ColorIdError, ColorError
class ExportGimpPalette(inkex.OutputExtension):
"""Export all colors in a document to a gimp pallet"""
select_all = (ShapeElement,)
names = {}
def save(self, stream):
name = self.svg.name.replace('.svg', '')
stream.write('GIMP Palette\nName: {}\n#\n'.format(name).encode('utf-8'))
for key, value in sorted(list(set(self.get_colors()))):
stream.write("{} {}\n".format(key, value).encode('utf-8'))
def get_colors(self):
"""Get all the colors from the selected elements"""
for elem in self.svg.selection.filter(ShapeElement):
for color in self.process_element(elem):
if str(color).upper() == 'NONE':
continue
yield ("{:3d} {:3d} {:3d}".format(*color.to_rgb()), self.names.get(color) or str(color).upper())
def process_element(self, elem):
"""Recursively process elements for colors"""
style = elem.fallback_style(move=False)
for col in inkex.Style.color_props:
try:
col = inkex.Color(style.get(col))
if (elem.getparent().get('inkscape:swatch') == "solid"):
self.names[col] = elem.getparent().get_id()
yield col
except ColorIdError:
gradient = self.svg.getElementById(style.get(col))
for stop in gradient.stops:
for item in self.process_element(stop):
yield item
except ColorError:
pass # Bad color
if elem.href is not None: # Capture colors of symbols or clones pointing to defs
for color in self.process_element(elem.href):
yield color
if __name__ == '__main__':
ExportGimpPalette().run()