<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TomK32</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TomK32"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/TomK32"/>
	<updated>2026-04-30T14:23:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=CalligraphedOutlineFill&amp;diff=14553</id>
		<title>CalligraphedOutlineFill</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=CalligraphedOutlineFill&amp;diff=14553"/>
		<updated>2007-05-07T19:00:59Z</updated>

		<summary type="html">&lt;p&gt;TomK32: added category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
Graphic Tablet users using the Calligraphy tool can easily draw sketches with variable width outlines. However, filling the interior area of such a calligraphed outline is not so easy: if you try to apply the Fill tool to the path you just created, you are actually changing the style of the outline stroke itself - not that of the area it encloses...&lt;br /&gt;
&lt;br /&gt;
You can manually copy the calligraphed outline and edit the dots it is made of to just remove the inner dots to obtain a path covering the area you are interested in, then apply the Fill tool to that new path...&lt;br /&gt;
or you can try using the Python extension with source code below.&lt;br /&gt;
&lt;br /&gt;
== Method ==&lt;br /&gt;
This extension was built on the observation that the Calligraphy tool creates a path that starts at the point where you started to draw, and is apparently completely made of curves (C commands in the &amp;quot;d&amp;quot; attribute of the created path element) - except for two lines (L commands in the &amp;quot;d&amp;quot; attribute): one marking the end of the stroke you drew (about mid way through the &amp;quot;d&amp;quot; element&amp;quot;), and one at the beginning of the stroke (last command in the &amp;quot;d&amp;quot; element before the final &amp;quot;z&amp;quot; command).&lt;br /&gt;
&lt;br /&gt;
The proposed extension will:&lt;br /&gt;
# loop through each of the paths you selected before calling the extension&lt;br /&gt;
# for each such path:&lt;br /&gt;
## create a copy of the current &amp;quot;path&amp;quot; element&lt;br /&gt;
## in the &amp;quot;d&amp;quot; attribute of that copied path: truncate away everything happening after the first &amp;quot;L&amp;quot; command encountered inside that attribute&lt;br /&gt;
## give a default style of &amp;quot;fill navy blue - no line&amp;quot; to that new path&lt;br /&gt;
## create a &amp;quot;g&amp;quot; element in the document, just before the presently selected path&lt;br /&gt;
## first put the duplicate path in that group&lt;br /&gt;
## put a copy of the original path inside the group (so that the original path is displayed in front of the created &amp;quot;fill&amp;quot; area)&lt;br /&gt;
## delete the original path from the document&lt;br /&gt;
&lt;br /&gt;
== Expected Issues ==&lt;br /&gt;
* In case the observation about &amp;quot;just two L commands being present inside a Calligraphy-tool generated path&amp;quot; is wrong, the extension will not produce the expected result&lt;br /&gt;
* If the extension is applied to anything else but a path just created with the Calligraphy tool, its behaviour will probably not be what you would like&lt;br /&gt;
* Especially: if you edit a path generated with the Calligraphy tool, the L position of the L commands inside the &amp;quot;d&amp;quot; attribute is not necessarily maintained&lt;br /&gt;
* Even if you do take the points above into account, it is most likely that small corrections will need to be appied to the dots corresponding to the very first and last ones in the original path. This is due to the &amp;quot;L&amp;quot; commands sometimes esthetically belonging to the shape you want to fill, sometimes not...&lt;br /&gt;
* Of course, using this extension makes most sense on a path that was meant to be a more or less closed area.&lt;br /&gt;
&lt;br /&gt;
== How to best use the extension ==&lt;br /&gt;
# draw your sketch with the Calligraphy tool (many separate strokes are OK)&lt;br /&gt;
# select all the strokes, the inside of which you would like to see filled in&lt;br /&gt;
# apply the extension&lt;br /&gt;
# fine-tune the start and end dots of the generated fill areas&lt;br /&gt;
# change the default fill color to the one you wish&lt;br /&gt;
# apply transforms to the generated groups of &amp;quot;original stroke + fill area&amp;quot; if you wish to alter their shapes&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
Two files to be created in the &amp;quot;extensions&amp;quot; folder of Inkscape&lt;br /&gt;
&lt;br /&gt;
=== File: fillstroke.inx ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;inkscape-extension&amp;gt;&lt;br /&gt;
    &amp;lt;_name&amp;gt;FillStroke&amp;lt;/_name&amp;gt;&lt;br /&gt;
    &amp;lt;id&amp;gt;org.dch.fillstroke&amp;lt;/id&amp;gt;&lt;br /&gt;
	&amp;lt;dependency type=&amp;quot;executable&amp;quot; location=&amp;quot;extensions&amp;quot;&amp;gt;fillstroke.py&amp;lt;/dependency&amp;gt;&lt;br /&gt;
	&amp;lt;dependency type=&amp;quot;executable&amp;quot; location=&amp;quot;extensions&amp;quot;&amp;gt;inkex.py&amp;lt;/dependency&amp;gt;&lt;br /&gt;
    &amp;lt;effect&amp;gt;&lt;br /&gt;
		&amp;lt;object-type&amp;gt;path&amp;lt;/object-type&amp;gt;&lt;br /&gt;
                &amp;lt;effects-menu&amp;gt;&lt;br /&gt;
                    &amp;lt;submenu _name=&amp;quot;Stroke&amp;quot;/&amp;gt;&lt;br /&gt;
                &amp;lt;/effects-menu&amp;gt;&lt;br /&gt;
    &amp;lt;/effect&amp;gt;&lt;br /&gt;
    &amp;lt;script&amp;gt;&lt;br /&gt;
        &amp;lt;command reldir=&amp;quot;extensions&amp;quot; interpreter=&amp;quot;python&amp;quot;&amp;gt;fillstroke.py&amp;lt;/command&amp;gt;&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/inkscape-extension&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== File: fillstroke.py ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/usr/bin/env python &lt;br /&gt;
'''&lt;br /&gt;
Copyright (C) 2007 Didier Chalon, chalondidier@skynet.be&lt;br /&gt;
&lt;br /&gt;
version 2.2&lt;br /&gt;
 1.0: first working version - just connecting the average dots&lt;br /&gt;
 1.1: also average the tangents&lt;br /&gt;
 2.0: keep stroke outline by pruning before first L&lt;br /&gt;
 2.1: insert filled area before parent stroke&lt;br /&gt;
 2.2: group parent stroke and filled area&lt;br /&gt;
&lt;br /&gt;
From selected stroke:&lt;br /&gt;
* assume the stroke &amp;quot;end point&amp;quot; is the first L command in the d attribute&lt;br /&gt;
* prune before first L&lt;br /&gt;
&lt;br /&gt;
This program is free software; you can redistribute it and/or modify&lt;br /&gt;
it under the terms of the GNU General Public License as published by&lt;br /&gt;
the Free Software Foundation; either version 2 of the License, or&lt;br /&gt;
(at your option) any later version.&lt;br /&gt;
&lt;br /&gt;
This program is distributed in the hope that it will be useful,&lt;br /&gt;
but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;br /&gt;
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the&lt;br /&gt;
GNU General Public License for more details.&lt;br /&gt;
&lt;br /&gt;
You should have received a copy of the GNU General Public License&lt;br /&gt;
along with this program; if not, write to the Free Software&lt;br /&gt;
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA&lt;br /&gt;
'''&lt;br /&gt;
import inkex, simplepath&lt;br /&gt;
&lt;br /&gt;
class FillStroke(inkex.Effect):&lt;br /&gt;
    def __init__(self):&lt;br /&gt;
        inkex.Effect.__init__(self)&lt;br /&gt;
&lt;br /&gt;
    def effect(self):&lt;br /&gt;
&lt;br /&gt;
        for id in self.options.ids:&lt;br /&gt;
&lt;br /&gt;
            # just keep selected paths&lt;br /&gt;
            node = self.selected[id]&lt;br /&gt;
            if node.tagName =='path':&lt;br /&gt;
                d = node.attributes.getNamedItem('d').value&lt;br /&gt;
                #inkex.debug(d)&lt;br /&gt;
            else:&lt;br /&gt;
                self.options.ids.remove(id)&lt;br /&gt;
&lt;br /&gt;
            #find first L&lt;br /&gt;
            dEnd = d.find(&amp;quot;L&amp;quot;) - 1&lt;br /&gt;
            #inkex.debug(d[:dEnd])&lt;br /&gt;
&lt;br /&gt;
            #create group to hold parent stroke and filled area&lt;br /&gt;
            newGroup = self.document.createElement('svg:g')&lt;br /&gt;
            newGroup.setAttribute('inkscape:groupmode','layer')&lt;br /&gt;
&lt;br /&gt;
            #append group before parent stroke&lt;br /&gt;
            node.parentNode.insertBefore(newGroup,node)&lt;br /&gt;
&lt;br /&gt;
            #create filled area as stripped path&lt;br /&gt;
            newPath = self.document.createElement('svg:path')&lt;br /&gt;
            newPath.setAttribute('d',d[:dEnd])&lt;br /&gt;
            newPath.setAttribute('style','display:inline;fill:#00004a;stroke:none;stroke-opacity:1;fill-opacity:1')&lt;br /&gt;
&lt;br /&gt;
            #append stripped path to group&lt;br /&gt;
            newGroup.appendChild(newPath)&lt;br /&gt;
&lt;br /&gt;
            #copy parent stroke&lt;br /&gt;
            copyStroke = node.cloneNode(1)&lt;br /&gt;
&lt;br /&gt;
            #append copy of parent stroke to group&lt;br /&gt;
            newGroup.appendChild(copyStroke)&lt;br /&gt;
&lt;br /&gt;
            #remove original stroke&lt;br /&gt;
            node.parentNode.removeChild(node)&lt;br /&gt;
&lt;br /&gt;
e = FillStroke()&lt;br /&gt;
e.affect()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
I'm routinely using this extension for my own drawing purposes. Suggestions to improve the functionality, the quality of the code etc are quite welcome !&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>TomK32</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Galleries&amp;diff=14485</id>
		<title>Galleries</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Galleries&amp;diff=14485"/>
		<updated>2007-05-04T17:42:04Z</updated>

		<summary type="html">&lt;p&gt;TomK32: /* Single-author galleries */ one single svg is not enough&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== localized versions ==&lt;br /&gt;
localized versions of that link list&lt;br /&gt;
* [[BenutzerGalerien|Benutzergalerien auf deutsch]]&lt;br /&gt;
&lt;br /&gt;
== Galleries ==&lt;br /&gt;
&lt;br /&gt;
=== Multiple-author galleries ===&lt;br /&gt;
&lt;br /&gt;
* [http://openclipart.org Open Clip Art Library]&lt;br /&gt;
* [http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Galeria Inkscape Brasil Galeria]&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/Category:Created_with_Inkscape Category:Created with Inkscape] at Wikimedia Commons contains thousands of Inkscape SVG images of all kinds&lt;br /&gt;
* [http://inkscape.deviantart.com/favourites/ inkscape.deviantart.com] The Inkscape group on deviantART&lt;br /&gt;
* [http://gould.cx/ted/ink-about/ Museum of Sodipodi and Inkscape About Screens]&lt;br /&gt;
&lt;br /&gt;
=== Single-author galleries ===&lt;br /&gt;
&lt;br /&gt;
* [http://conichiwua.wordpress.com/ Conichiwua] - Inkscape art&lt;br /&gt;
* [http://www.ufowebfactory.net/download/free-svg_en.htm illustrations] and associated SVG files &lt;br /&gt;
* [http://www.revis.co.uk/site/?q=taxonomy/term/7 Inkscape animations] and CC licensed SVG source files, plus a gear making tutorial&lt;br /&gt;
* A tiny selection of [http://marksinkscape.blogspot.com/ Mark H's] inkscape pics.&lt;br /&gt;
* [http://www.jeromehouix.info/ Jiije] artworks by jiije&lt;br /&gt;
* [http://www.pictura4.1gb.at picturi,reproduceri,portrete]&lt;br /&gt;
* [http://www.dushkin.org/ Dushkin] is an artist of the digital age. A graduate of iidabashi hoikuen. Please be sure to leave a comment in his blog. Check out his gallery for the latest Inkscape creations.&lt;br /&gt;
* [[Haypo]]&lt;br /&gt;
* A few experimental Inkscape creations from [http://clik.to/cal Cal Russell-Thompson]; more on his [http://rubberkeith.deviantart.com DeviantART page].&lt;br /&gt;
* Dan Wells' beautiful gallery of Inkscape art is viewable [http://monkeydan1.deviantart.com here.]&lt;br /&gt;
* [http://lunar8.rydia.net/ Mental's Lunar 8 Comics]&lt;br /&gt;
* [[simarilius]]&lt;br /&gt;
* [http://www.le-radar.com/?art/galerie Cedric Gemy]&lt;br /&gt;
* [[Jofo]]&lt;br /&gt;
* [[ChromeCat]]&lt;br /&gt;
* [http://www.kde-look.org/usermanager/search.php?username=salahuddin66 Great Wallpapers!]&lt;br /&gt;
* [[Simondebelem]]&lt;br /&gt;
* [http://david.bellot.free.fr SVG-cards]&lt;br /&gt;
* [http://zubauza.deviantart.com/gallery zubauza's gallery @ deviantART]&lt;br /&gt;
* [[Gwyn]]&lt;br /&gt;
* [http://edeca.net/graphics.xml Free SVG nautical flags]&lt;br /&gt;
* [http://gatonegro.ceibes.org Gatonegro deseño - gatonegro.ceibes.org]. Inkscape-based graphic design, with the occasional aid of the GIMP and Scribus. Stickers, posters, tee-shirts, pamphlets, logotypes, wallpapers... Most of them released under the Creative Commons Attribution-Sharealike. (Language: galizan.)&lt;br /&gt;
* [http://imaginaciongnu.iespana.es/ Imaginacion GNU] Artwork created with Inkscape by Daniel Cremades (Graphic designer, spanish)&lt;br /&gt;
* [http://www.bakedbabies.com Baked Babies] (a few comics created with inkscape WARNING: not for kids)&lt;br /&gt;
* [http://www.pictura4.1gb.at/portrete_in_creion_pe_hartie.html portrete la comanda in creion] (portraits by pictures)&lt;br /&gt;
* [http://kde-look.org/content/show.php?content=16627 AmaroK Icon], [http://kde-look.org/content/show.php?content=18204 Mupen64 Icon] KDE artwork by Zekant&lt;br /&gt;
* [http://www.insert.waw.net.pl/vector/firecat_large.jpg Piotr Kosmala]&lt;br /&gt;
* [http://erture.webpark.pl/vinci.html Radek Turek]&lt;br /&gt;
* [http://haef.szm.sk/ Henrich Fichna]&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/ Andy's Blog] Blog german. Inkscape is one topic, w. Examples &amp;amp; free SVG Downloads.&lt;br /&gt;
* [http://hooboo.free.fr/index.php LaMouette] french OpenOffice.org Mascot by Ben Bois made with Inkscape&lt;br /&gt;
* [http://www.joncampbell.ca/inkscape/gallery.php Jon Campbell] Variety of projects done in inkscape&lt;br /&gt;
* [http://f-r-e-d.org/ Fred's SVG Wallpapers]&lt;br /&gt;
* [http://panzi.deviantart.com/gallery/ panzi.deviantArt.com] only some pictures are SVG (e.g. see: [http://www.deviantart.com/view/4617948/ my orc])&lt;br /&gt;
* [http://dump.c7.se/tribal.png Tribal tattoo drawn in Inkscape] ([http://c7.se/?entry=69 Result])&lt;br /&gt;
* [http://ggw.stfu.ee/ GeeksGoneWild] A webcomic drawn with inkscape&lt;br /&gt;
* [http://xterminador.deviantart.com/gallery/ xterminador.deviantart.com] Artwork by Xterminator at Deviantart Parental Advisory Explicit Content&lt;br /&gt;
* [http://www.braincud.com/ Brain Cud] A webcomic now drawn with Inkscape (starting with installment number 24).&lt;br /&gt;
* [http://popolon.org/inkscape/ popolon.org/inkscape/] Tutorial for Inkscape and pictures made with Inkscape, mostly in french some in english or chinese.&lt;br /&gt;
* [http://www.protemporeevents.com/larrys/ Larry's Main Entrance] A restaurant menu redesign project done in Inkscape!&lt;br /&gt;
* [http://yeknan.free.fr/blog/index.php?2006/03/22/74-galerie-svg yeKcim] Free SVG (Wormux, Crocobox, Mille bornes,...)&lt;br /&gt;
* [[Paramate]]&lt;br /&gt;
* [http://jhuss.com/download.php?list.3 jhuss's artwork] a some works, all made in inkscape&lt;br /&gt;
* [http://www.awns.com/galeri/ Galeri] A growing collection of colourful and stylish artwork. &lt;br /&gt;
* [http://blog.organicadtm.com/wp-gallery2.php OrganicaDTM Studio's gallery] Our projects are doing with Inkscape, Gimp and Blender.&lt;br /&gt;
*[http://www.freewaydesign.com/  freewaydesign] Dr-Hamza`s Blog  Misc. Designs&lt;br /&gt;
* [http://proximus1.deviantart.com/gallery/?catpath=digitalart/vector/&amp;amp;offset=0 Proximus1] Vector Artwork by Proximus1&lt;br /&gt;
* [http://singularityblues.com Singularity Blues] A webcomic done in Inkscape. SVG files available upon request.&lt;br /&gt;
*[http://hrum.deviantart.com/gallery ~hrum] Konstantin R. page on deviantart with pictures made in Inkscape (most of them) and GIMP&lt;br /&gt;
* [http://www.kde-files.org/index.php?xcontentmode=644 KDE-Files Inkscape directory] artwork by various contrubters, you can also upload your own work.&lt;br /&gt;
* [http://sunedonath.de/bilder.htm Sune Donath] anime wallpapers made with Inkscape incl. SVG download.&lt;br /&gt;
* [http://www.rammbauer.nl/?cat=3 Rayart Rammbauer] some poster and cartoons made with Inkscape&lt;br /&gt;
* [http://vorg.pl/design/tag/vector Vorg.pl] artwork by graphic designer Marcin Ignac&lt;br /&gt;
* [http://playful-geometer.deviantart.com | A Playful Geometer's deviantart gallery] Images made mostly using [http://sourceforge.net/projects/play-svg pLAySVG] the GPL'd python libraries for the easy generation of SVG vector graphics  &lt;br /&gt;
* [http://homepage.mac.com/zapift Alpha Release] a weekly webcomic with SVGs under a Creative Commons license, drawn entirely in Inkscape&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- these sites not responding/working &lt;br /&gt;
* [http://gallery.crypt.cc Crypt.cc Gallery] artwork by J, others can also upload your own work to showcase here&lt;br /&gt;
* [http://programmer-art.org/artwork Daniel G. Taylor's Art Page]&lt;br /&gt;
* [http://gallery.urosevic.net/svg Urke MMI]&lt;br /&gt;
* [http://widdma.dyndns.org/wc/widdmoprev.html Widdmotions] (Not found) Smiley Set&lt;br /&gt;
* http://www.hinterlandcasa.it An Italian svg panels &amp;amp; buttons based site made with Inkscape.&lt;br /&gt;
* [http://www.grafixport.org/ grafixport] A new Forum for SVG and Inkscape Friends!&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add a link to your Inkscape gallery here!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:About Inkscape]]&lt;/div&gt;</summary>
		<author><name>TomK32</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:TomK32&amp;diff=14481</id>
		<title>User:TomK32</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:TomK32&amp;diff=14481"/>
		<updated>2007-05-04T06:37:47Z</updated>

		<summary type="html">&lt;p&gt;TomK32: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm Thomas R. Koll, soon-publisher of the casteljau magazine. I'm also admin at de: wikipedia so don't bug me about wiki-bullshit, correct my mistakes yourself cuz I care bout.&lt;br /&gt;
&lt;br /&gt;
* [http://blog.tomk32.de me blogging about Webdesign, politics, music etc.]&lt;/div&gt;</summary>
		<author><name>TomK32</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=BenutzerGalerien&amp;diff=14447</id>
		<title>BenutzerGalerien</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=BenutzerGalerien&amp;diff=14447"/>
		<updated>2007-04-28T17:45:43Z</updated>

		<summary type="html">&lt;p&gt;TomK32: /* Mit Inkscape erstellte Projekte */ gibt es nicht mehr, schade&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Urprungsfassung ==&lt;br /&gt;
&lt;br /&gt;
Englische Ursprungsfassung [[Galleries|hier]]&lt;br /&gt;
&lt;br /&gt;
== Galerien ==&lt;br /&gt;
&lt;br /&gt;
Füg hier einen Link zu deiner eigenen Inkscape-Galerie an&lt;br /&gt;
&lt;br /&gt;
* [http://commons.wikimedia.org/wiki/Category:SVG Kategorie:SVG im Wikimedia-Projekt]&lt;br /&gt;
&lt;br /&gt;
=== Clipart ===&lt;br /&gt;
* [http://openclipart.org Open Clip Art Library] (en)&lt;br /&gt;
* [http://edeca.net/site/graphics [[NauticalFlags]]] freie SVG-Flaggen (nautisches Alphabet; en)&lt;br /&gt;
* [http://twiki.softwarelivre.org/bin/view/InkscapeBrasil/Galeria Inkscape Brasil Galeria (pt_BR)]&lt;br /&gt;
&lt;br /&gt;
=== Comics &amp;amp; Cartoons ===&lt;br /&gt;
* [http://www.poulejapon.com [[PouleJapon]]] täglicher Comic, gemacht mit Inkscape (en, fr, jap)&lt;br /&gt;
* [http://www.inkpipe.com Inkpipe.com] SVG-Cartoons und -Gekritzel (en)&lt;br /&gt;
* [http://www.xp-swiss.org/wiki/index.php?title=Comics_%28english%29 X-Coders] die XP-Swiss eXtreme Programming Cartoons (en)&lt;br /&gt;
* [http://lunar8.rydia.net/ Mental's Lunar 8 Comics] (en)&lt;br /&gt;
* [http://www.bakedbabies.com Baked Babies] (ein paar mit Inkscape erstellte Comics; WARNUNG: nicht für Kinder!; en)&lt;br /&gt;
* [http://thmayos.free.fr/inkscape/manga_inspiration.svgz Manga Inspiration] schnelle Zeichnung mit Inkscape 0.42 (SVG)&lt;br /&gt;
&lt;br /&gt;
=== Artwork &amp;amp; Wallpapers ===&lt;br /&gt;
* [http://programmer-art.org/artwork Daniel G. Taylor's Art Page] (funktioniert wieder!; en)&lt;br /&gt;
* [http://www.le-radar.com/?art/galerie Cedric Gemy] (fr)&lt;br /&gt;
* [http://urke.deviantart.com/gallery/ Urke MMI] (en)&lt;br /&gt;
* [http://hooboo.free.fr/index.php franz. [[OpenOffice]].org Maskottchen] von Ben Bois, gemacht mit Inkscape (fr)&lt;br /&gt;
* [http://kde-look.org/content/show.php?content=16627 [[AmaroK]] Icon] KDE Artwork von Zekant (en)&lt;br /&gt;
* [http://kde-look.org/content/show.php?content=18204 Mupen64 Icon] KDE Artwork von Zekant (en)&lt;br /&gt;
* [http://www.volvoguy.net/ubuntu/ Ubuntu SVG Artwork] (en)&lt;br /&gt;
* [http://www.smartart.it/albums/wallpapers/abducted_1600x1200.sized.png Gentoo SVG Artwork] Wenn es sich bewegt, kompilier es!&lt;br /&gt;
* [http://www.kde-look.org/usermanager/search.php?username=salahuddin66 Großartige Wallpapers!] (en)&lt;br /&gt;
* [http://zvonsully.home.ro/ zvonSully Wallpapers] powered by Inkscape &amp;amp; SVG (en)&lt;br /&gt;
* [http://www.senses0.org.mv/popzees/artwork_white.html Artwork von Senses0 mit Inkscape] (en)&lt;br /&gt;
* [http://gatonegro.ceibes.org Gatonegro deseño - gatonegro.ceibes.org]  (gl)&lt;br /&gt;
* [http://sunedonath.de/bilder.htm Wallpaper von Sune Donath] inkl. SVG download (de)&lt;br /&gt;
&lt;br /&gt;
=== Künstler/innen, die Inkscape verwenden ===&lt;br /&gt;
* [http://www.dushkin.org/ Dushkin] ist ein Digital-Künstler des modernen Zeitalters. Die meisten seiner Werke sind mit Inkscape gemacht.&lt;br /&gt;
&lt;br /&gt;
=== Inkscapebezogenes ===&lt;br /&gt;
* [http://popolon.org/inkscape/ Popolon Inkscape Tutorials and Illustrationen] das meiste auf Französisch, manches auf Englisch oder Chinesisch&lt;br /&gt;
&lt;br /&gt;
=== Mit Inkscape erstellte Projekte ===&lt;br /&gt;
* [http://www.joncampbell.ca/inkscape/gallery.php Jon Campbell] Auswahl von mit Inkscape gemachten Projekten (en)&lt;br /&gt;
* [http://david.bellot.free.fr/svg-cards SVG-Spielkarten] (en)&lt;br /&gt;
* [http://nicubunu.ro/pictures/rpg/inkscape_rpg_map.png RPG-Landkarte] (Screenshot) von [http://nicubunu.ro/ Nicu Buculei]&lt;br /&gt;
* [http://www.coggy.de www.coggy.de / Webseite] (de)&lt;br /&gt;
&lt;br /&gt;
=== Andere ===&lt;br /&gt;
* [http://inkscape.deviantart.com/ inkscape.deviantart.com] die Inkscape-Gruppe auf deviantART 1 (en)&lt;br /&gt;
* [http://inkscapers.deviantart.com/ inkscapers.deviantart.com] die Inkscape-Gruppe auf deviantART 2 (en)&lt;br /&gt;
* [http://zubauza.deviantart.com/gallery zubauza's Galerie @ deviantART] (en)&lt;br /&gt;
* [[Haypo]] (en)&lt;br /&gt;
* [[simarilius]] (en)&lt;br /&gt;
* [[Jofo]] (en)&lt;br /&gt;
* [[ChromeCat]] (en)&lt;br /&gt;
* [[Simondebelem]] (en)&lt;br /&gt;
* [[Gwyn]] (en)&lt;br /&gt;
* [http://www.insert.waw.net.pl/vector/firecat_large.jpg Piotr Kosmala]&lt;br /&gt;
* [http://erture.webpark.pl/vinci.html Radek Turek] (en)&lt;br /&gt;
* [http://haef.szm.sk/ Henrich Fichna] (en)&lt;br /&gt;
* [http://blog.die-scheiss-kiste.de/wordpress/ Andy's Blog] Blog; Inkscape ist eines der Themen, mit Beispielen und freien SVG-Downloads (de)&lt;br /&gt;
* [http://www.dirk-hoeschen.de/content/index.php?opi=view&amp;amp;id=8 Bevel Tutorial] Tutorial für Anfänger/innen über das Erzeugen von Schrägen-[[/Kanten]]-Effekten mittels Farbverläufen (de)&lt;br /&gt;
* [http://imaginaciongnu.tk Imaginación GNU] (esp)&lt;br /&gt;
&lt;br /&gt;
[[Category:German]]&lt;/div&gt;</summary>
		<author><name>TomK32</name></author>
	</entry>
</feed>