<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" > <channel><title>Comments on: Inkscape plugins in Python</title> <atom:link href="http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/feed" rel="self" type="application/rss+xml" /><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python</link> <description>Open Source Publishing - Design Tools For Designers</description> <lastBuildDate>Fri, 25 Nov 2011 11:00:30 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>By: Dave Crossland</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-42820</link> <dc:creator>Dave Crossland</dc:creator> <pubDate>Thu, 11 Sep 2008 22:08:57 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-42820</guid> <description>http://tinkerhouse.net/shoebot :-)</description> <content:encoded><![CDATA[<p><a href="http://tinkerhouse.net/shoebot" rel="nofollow">http://tinkerhouse.net/shoebot</a> <img src='http://ospublish.constantvzw.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Nicolas</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-38916</link> <dc:creator>Nicolas</dc:creator> <pubDate>Wed, 25 Jun 2008 14:18:41 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-38916</guid> <description>hello Stefan,Nodebox looks awesome, indeed.  By the way, Ricardo Lafuente is working on Shoebox, a rewrite of Nodebox that works on Linux using the Cairo backend. http://shoebox.sollec.org/</description> <content:encoded><![CDATA[<p>hello Stefan,</p><p>Nodebox looks awesome, indeed.  By the way, Ricardo Lafuente is working on Shoebox, a rewrite of Nodebox that works on Linux using the Cairo backend. <a href="http://shoebox.sollec.org/" rel="nofollow">http://shoebox.sollec.org/</a></p> ]]></content:encoded> </item> <item><title>By: Stefan</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-38877</link> <dc:creator>Stefan</dc:creator> <pubDate>Wed, 25 Jun 2008 00:41:43 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-38877</guid> <description>If you look out for sth. like Scriptographer based on Python have a look at Nodebox (http://www.nodebox.net/).</description> <content:encoded><![CDATA[<p>If you look out for sth. like Scriptographer based on Python have a look at Nodebox (<a href="http://www.nodebox.net/" rel="nofollow">http://www.nodebox.net/</a>).</p> ]]></content:encoded> </item> <item><title>By: Michael</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-24961</link> <dc:creator>Michael</dc:creator> <pubDate>Tue, 26 Feb 2008 20:19:24 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-24961</guid> <description>A useful resource: Aaron Spike&#039;s webpages / examples of python extensions for Inkscape (but no pictures ;( ): http://www.ekips.org/comp/inkscape/In fact, it seems the examples I based my code on are from this site (in my &quot;circles.inx&quot; you still see traces of the &quot;ekips&quot; domain name -- which I didn&#039;t change).</description> <content:encoded><![CDATA[<p>A useful resource: Aaron Spike&#8217;s webpages / examples of python extensions for Inkscape (but no pictures ;( ):<br /> <a href="http://www.ekips.org/comp/inkscape/" rel="nofollow">http://www.ekips.org/comp/inkscape/</a></p><p>In fact, it seems the examples I based my code on are from this site (in my &#8220;circles.inx&#8221; you still see traces of the &#8220;ekips&#8221; domain name &#8212; which I didn&#8217;t change).</p> ]]></content:encoded> </item> <item><title>By: nicolas</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-24203</link> <dc:creator>nicolas</dc:creator> <pubDate>Wed, 20 Feb 2008 20:49:58 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-24203</guid> <description>Hello Sammy and Femke,Technically, scriptographer and the extensions of inkscape are not the same thing. Scriptographer is a java programme that &#039;talks&#039; to the Illustrator functionalities. If Illustrator has a function that, for example, fills a shape with a color, scriptographer can trigger this &#039;fill&#039; function without having to re-implement it. On the contrary, in Inkscape extensions, you have to write the functions yourself since the programme doesn&#039;t answer to your script calls.  It just passes the svg document to the script as input and tries to display it when the script has finished working on it. It is rather unfortunate since the most acrobatic parts of the inkscape code are difficult to re-implement. Therefore the pace of development of extensions may be a bit slower if you try to make ambitious things.However in the newest versions of inkscape, the developers offer two additional ways to script. One is from the outside of inkscape and ressembles a &#039;slave&#039; mode. The other is to use an embedded console that allows you to inject python or perl code when the programme is open. I haven&#039;t investigated these yet, but it seems that these new developments give the possibility to &#039;talk&#039; to inkscape&#039;s most interesting functionalities.</description> <content:encoded><![CDATA[<p>Hello Sammy and Femke,</p><p>Technically, scriptographer and the extensions of inkscape are not the same thing. Scriptographer is a java programme that &#8216;talks&#8217; to the Illustrator functionalities. If Illustrator has a function that, for example, fills a shape with a color, scriptographer can trigger this &#8216;fill&#8217; function without having to re-implement it.<br /> On the contrary, in Inkscape extensions, you have to write the functions yourself since the programme doesn&#8217;t answer to your script calls.  It just passes the svg document to the script as input and tries to display it when the script has finished working on it. It is rather unfortunate since the most acrobatic parts of the inkscape code are difficult to re-implement. Therefore the pace of development of extensions may be a bit slower if you try to make ambitious things.</p><p>However in the newest versions of inkscape, the developers offer two additional ways to script. One is from the outside of inkscape and ressembles a &#8216;slave&#8217; mode. The other is to use an embedded console that allows you to inject python or perl code when the programme is open. I haven&#8217;t investigated these yet, but it seems that these new developments give the possibility to &#8216;talk&#8217; to inkscape&#8217;s most interesting functionalities.</p> ]]></content:encoded> </item> <item><title>By: Femke</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-24175</link> <dc:creator>Femke</dc:creator> <pubDate>Wed, 20 Feb 2008 12:47:28 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-24175</guid> <description>And more! Look here for the kinds of extensions currently around; not only JavaScript (used by Scriptograper) but also Python, Perl and Bash...: http://wiki.inkscape.org/wiki/index.php/ExtensionsRepository (Warning: The Puff Effect is quite a bit different from the amazing aesthetics of most Scriptographer scripts ;-))To install this extension, I copied the files into /usr/share/inkscape/extensions and restarted Inkscape; after that a new menu-item &#039;Python&#039; was added under &#039;Effects&#039;.</description> <content:encoded><![CDATA[<p>And more! Look here for the kinds of extensions currently around; not only JavaScript (used by Scriptograper) but also Python, Perl and Bash&#8230;:<br /> <a href="http://wiki.inkscape.org/wiki/index.php/ExtensionsRepository" rel="nofollow">http://wiki.inkscape.org/wiki/index.php/ExtensionsRepository</a><br /> (Warning: The Puff Effect is quite a bit different from the amazing aesthetics of most Scriptographer scripts <img src='http://ospublish.constantvzw.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> )</p><p>To install this extension, I copied the files into /usr/share/inkscape/extensions and restarted Inkscape; after that a new menu-item &#8216;Python&#8217; was added under &#8216;Effects&#8217;.</p> ]]></content:encoded> </item> <item><title>By: Sammy</title><link>http://ospublish.constantvzw.org/tools/inkscape-plugins-in-python/comment-page-1#comment-23774</link> <dc:creator>Sammy</dc:creator> <pubDate>Mon, 18 Feb 2008 19:33:34 +0000</pubDate> <guid isPermaLink="false">http://ospublish.constantvzw.org/?p=387#comment-23774</guid> <description>Interesting. Could this open the door to the development of tools like Scriptographer ? (http://www.scriptographer.com/ - open source extensions for Illustrator)</description> <content:encoded><![CDATA[<p>Interesting. Could this open the door to the development of tools like Scriptographer ? (<a href="http://www.scriptographer.com/" rel="nofollow">http://www.scriptographer.com/</a> &#8211; open source extensions for Illustrator)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached
Database Caching 1/17 queries in 0.033 seconds using memcached
Object Caching 364/371 objects using memcached

Served from: ospublish.constantvzw.org @ 2012-02-09 15:13:57 -->
