<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Graphicslab</title>
<description>Site.BlogIt-Admin</description>
<link>http://www.graphicslab.org/Site/BlogIt-Admin?action=rss</link>
<lastBuildDate>Sat, 19 May 2012 16:49:39 GMT</lastBuildDate>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Warming-up-for-GSOC-2012?when=2012-03-27T15:04:43Z</link>
<title>Blog / Warming up for GSOC 2012</title>
<dc:date>2012-03-17T10:00:00Z</dc:date>
<pubDate>Sat, 17 Mar 2012 10:00:00 GMT</pubDate>
<description><![CDATA[<p>Scribus has been accepted for the <a class='urllink' href='http://www.google-melange.com/gsoc/homepage/google/gsoc2012' title='' rel='nofollow'>GSOC 2012</a> and several guys (girls where are you?) are popping up and ask about how to get confident with the Scribus code.
</p>
<p class='vspace'>Here are some short facts to get you up and running.
</p>
<div class='vspace'></div><div class='property-First'>First: get the Scribus code and compile it!</div>
<div class='vspace'></div>
<div class='sourceblock ' id='sourceblock1'>
  <div class='sourceblocktext'><div class="bash">$ <span class="kw3">cd</span> ~<span class="sy0">/</span>src<br />
$ <span class="kw2">svn</span> <span class="kw2">co</span> <span class="kw2">svn</span>:<span class="sy0">//</span>scribus.net<span class="sy0">/</span>trunk<span class="sy0">/</span>Scribus scribus<br />
$ <span class="kw3">cd</span> scribus<br />
$ <span class="kw2">mkdir</span> build<br />
$ <span class="kw3">cd</span> build<br />
$ cmake -DCMAKE_INSTALL_PREFIX:<span class="re2">PATH</span>=<span class="sy0">/</span>home<span class="sy0">/</span>yourhome<span class="sy0">/</span>bin<span class="sy0">/</span>scribus -DWANT_DEBUG=<span class="nu0">1</span> -DWANT_GUI_LANG=<span class="st0">&#34;en_GB;de;fr;it;en&#34;</span> ..<br />
$ <span class="kw2">make</span> <span class="re5">-j2</span><br />
$ <span class="kw2">make</span> <span class="kw2">install</span><br />
$ <span class="kw3">cd</span> ~<span class="sy0">/</span>bin<span class="sy0">/</span>scribus<span class="sy0">/</span>bin<br />
$ .<span class="sy0">/</span>scribus</div></div>
  <div class='sourceblocklink'><a href='http://www.graphicslab.org/Blog/Warming-up-for-GSOC-2012?action=sourceblock&amp;num=1' type='text/plain'>[&#036;[Get Code]]</a></div>
</div>

<p class='vspace'>Before doing this: you will have to make sure that:
</p><ul><li>you have a working and modern Linux.
</li><li>you have to pull all the dependencies: if your on Debian you can run <code>apt-get build-dep scribus</code>, for other distributions you will have to read the <a class='urllink' href='http://wiki.scribus.net/canvas/Building_SVN_versions_with_CMake#Getting_All_the_Things_You_Need' title='' rel='nofollow'>Getting All the Things You Need</a> chapter in the Scribus wiki
</li><li>you have a <code>src/</code> and a <code>bin/</code> directory in your home (which i will call "yourhome" in the rest of this article)
</li></ul><p class='vspace'>Some remarks:
</p><ul><li>For your contributions you can also use Windows, OS X, or almost any other operating system; but for your first steps the easiest thing is Linux; believe me.
</li><li>The repositories on Sourceforge are not all up to date. For now you should use our SVN repository, but for the GSOC project itself you will be able to use what you prefer (git, hg, ...).
</li></ul><p class='vspace'>The second topic is: how to talk to "us"!
</p>
<p class='vspace'>"We" are mostly in Europe and have a normal day job keeping us busy during day hours. Even if some of us keep an eye on the <code>#scribus</code> irc channel on Freenode for most of the CET day, the best time for a chat are CET evenings between 20:00 and 24:00.
</p>
<p class='vspace'>If you have a proposal to submit or questions that didn't get answered in the irc channel, please register to the <a class='urllink' href='http://lists.scribus.info/mailman/listinfo/scribus-dev' title='' rel='nofollow'>scribus-dev mailing list</a> and post your question in there.
</p>
<div class='vspace'></div><div class='property-Third'>Third: How to get your feet wet.</div>
<p class='vspace'>On the one side you will probably be curious, to know what it's like to write code for Scribus and on the other side seeing how you program, will help us to choose among the GSOC candidates. We have a <a class='urllink' href='http://bugs.scribus.net' title='' rel='nofollow'>bug tracker</a> where we have lot open issues (and even more closed ones!). Skim through them: you will get an idea of what are the hot topics.
</p>
<p class='vspace'>If you feel overwhelmed -- and it's likely that you feel that way after having had a look at the bug tracker -- here is a list of issues you could try to solve:
</p>
<div class='vspace'></div><ul><li><a class='urllink' href='http://bugs.scribus.net/view.php?id=10541' title='' rel='nofollow'>Guides jumping around on mouse click</a> (learning about the canvas)
</li><li><a class='urllink' href='http://bugs.scribus.net/view.php?id=10584' title='' rel='nofollow'>Keep insertion mode after inserting glyph</a> (a bit harder)
</li><li><a class='urllink' href='http://bugs.scribus.net/view.php?id=10571' title='' rel='nofollow'>Some Edit Boxes trigger an action on every user keystroke</a> (more Qt oriented)
</li><li><a class='urllink' href='http://bugs.scribus.net/view.php?id=10213' title='' rel='nofollow'>Horizontal scroll sometimes not there for main window</a> (more GUI oriented)
</li></ul><p class='vspace'>And once you have some code to show:
</p>
<div class='vspace'></div>
<div class='sourceblock ' id='sourceblock2'>
  <div class='sourceblocktext'><div class="bash">$ <span class="kw2">svn</span> <span class="kw2">diff</span> filesyouhavechanged <span class="sy0">&gt;</span> myissue.diff</div></div>
  <div class='sourceblocklink'><a href='http://www.graphicslab.org/Blog/Warming-up-for-GSOC-2012?action=sourceblock&amp;num=2' type='text/plain'>[&#036;[Get Code]]</a></div>
</div>

<p class='vspace'>and upload the diff file to the bug tracker!
</p>
<div class='vspace'></div><div class='property-Finally'>Finally: I wish you good luck with your application for GSOC 2012!</div>
<p class='vspace'>P.S.: Ff you get a segmentation fault when launching Scribus, please install qt-config and change the theme used for the Qt apps.
</p>
<p class='vspace'>... and as a challenge to our GSOC candidates: you may want to look for the cause of it, fix it or get Scribus to notice that there is a problem and gracefully quit (not before having shown an alert indicating what the user should do)
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Scribus-dockable-palettes?when=2012-01-11T20:11:27Z</link>
<title>Blog / Scribus and the dockable palettes</title>
<dc:date>2012-01-11T19:57:00Z</dc:date>
<pubDate>Wed, 11 Jan 2012 19:57:00 GMT</pubDate>
<description><![CDATA[<p>If the new year has brought us the shiny new Scribus 1.4 we all have been waiting for for so long, we shouldn't forget the bigger and smaller improvements we already had at the end of 2011 in Scribus 1.5.
</p>
<p class='vspace'>Franz has built upon Jean's efforts and has checked that all palettes can be docked to the side of the window!
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-dockable/Scribus-dockable.png' alt='' title='' /></div>
<p class='vspace'>I'm still not 100% that this is a useful feature, but who cares: now, one can stack the palettes in docked tabs! Hurrah!
</p>
<p class='vspace'>Now, we only have to wait that the code of the Properties palettes is ready for the long awaited redesign!
</p>
<div class='vspace'></div>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Pdf-icon?when=2011-10-13T09:36:29Z</link>
<title>Blog / What icon for PDF files?</title>
<dc:date>2011-10-13T09:45:00Z</dc:date>
<pubDate>Thu, 13 Oct 2011 09:45:00 GMT</pubDate>
<description><![CDATA[<p>In the recent past, I've been involved &#8211; very little, I admit it &#8211; in the <a class='urllink' href='http://pdfreaders.org/' title='' rel='nofollow'>Get a Free PDF reader</a> campaign and, on  the other side, in the <a class='wikilink' href='http://www.graphicslab.org/Blog/Scribus-Icons-Contest-2011'>contest for a new icons set for Scribus</a>.
</p>
<p class='vspace'>One thing that bothers me is: do we really need, for each button related to a PDF document, a logo which is probably trademarked by the Adobe company?
</p>
<p class='vspace'>A <a class='urllink' href='http://www.google.ch/search?q=pdf&amp;tbm=isch&amp;hl=en&amp;cr=&amp;safe=off&amp;orq=pdf&amp;tbs=isz:i' title='' rel='nofollow'>quick search</a> for icons related to the "Pdf" term does not leave many doubts:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Pdf-icon/Pdf_icon.png' alt='' title='' /></div>
<p class='vspace'>The red "A" is used as a synonym for PDF... even if it is probably meant to identify the "Acrobat" product by Adobe...
</p>
<p class='vspace'>Even the Wikipedia authors &#8211; often very picky on this kind of issues &ndahs; couldn't find anything better:
</p>
<div class='vspace'></div><div><a class='urllink' href='http://en.wikipedia.org/wiki/Portable_Document_Format' title='' rel='nofollow'><img src='http://graphicslab.org/upload//Blog/Pdf-icon/Pdf_icon_wikipedia.png' alt='' title='' /></a></div>
<p class='vspace'>Is there really no graphic artists who can come up with an original icons for this format? PDF is an open standard and deserves a vendor neutral icon!
</p>
<p class='vspace'>By the way: I think that Google revealed what inspired that logo!
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Pdf-icon/Pdf_icon_acrobat.png' alt='' title='' /></div>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Scribus-Icons-Contest-2011?when=2011-10-08T11:22:09Z</link>
<title>Blog / Scribus Icons Contest 2011</title>
<dc:date>2011-10-08T11:25:00Z</dc:date>
<pubDate>Sat, 08 Oct 2011 11:25:00 GMT</pubDate>
<description><![CDATA[<div><img src='http://graphicslab.org/upload//Blog/Scribus-Icons-Contest-2011/Scribus-Icons-Contest-2011.png' alt='' title='' /></div>
<p class='vspace'>Many of you have probably noticed that the Scribus' icons set could
need some care!
</p>
<p class='vspace'>If you are skilled in icons design and want to do a substantial
contribution to the Scribus project, you're kindly invited to get your
hands dirty and create a new icon theme.
</p>
<p class='vspace'>We ask you to submit a proposal with 10 to 30 icons in one single PNG
file in the "Development &gt; UI" board in the <a class='urllink' href='http://forums.scribus.net/index.php/board,22.0.html' title='' rel='nofollow'>Scribus forums</a>.<br />You will probably want to add a description of your work.
</p>
<p class='vspace'>The deadline for submitting your proposal is October 31 2011.
</p>
<p class='vspace'>Members of the Scribus team and of the Scribus UI group will then
choose one proposal and ask its author to work on the full set.
</p>
<p class='vspace'>Here some general considerations:
</p><ul><li>The new icons will be for Scribus 1.5svn.
</li><li>You can get all the current icons by checking out the Scribus sources
</li></ul><p>from our subversion repository and going to the
scribus/resources/icons/ directory.
</p><ul><li>You should create icons in different states (on, off, hovered) and at
</li></ul><p>different sizes (16, 22, 32 pixel)
</p><ul><li>In the spirit of free software, we also welcome designers who are
</li></ul><p>open to a cooperation with other  participants of the contest and
achieve a full set of icons for Scribus.
</p>
<p class='vspace'>For questions and general comments, please ask in the
<a class='urllink' href='http://lists.scribus.info/mailman/listinfo/scribus' title='' rel='nofollow'>Scribus mailing list</a>  or in <a class='urllink' href='http://forums.scribus.net/index.php/board,22.0.html' title='' rel='nofollow'>this post</a> in the Scribus forums.
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Grafilabor-Herbst-2011?when=2011-09-30T15:29:01Z</link>
<title>Blog / Grafiklabor: das Herbstprogramm 2011</title>
<dc:date>2011-09-30T14:00:00Z</dc:date>
<pubDate>Fri, 30 Sep 2011 14:00:00 GMT</pubDate>
<description><![CDATA[<p>Die Sommerferien sind vorbei und das Grafiklabor kommt zurück!
</p>
<p class='vspace'>Am nächsten Sonntag treffen wir im <a class='urllink' href='http://dock18.ch' title='' rel='nofollow'>Dock 18</a>, und werden an unseres Bild arbeiten!<br />Die Werken werden dann am 11.11.11 im <a class='urllink' href='http://dock18.ch' title='' rel='nofollow'>Dock 18</a> im Rahmen des <em>Grand Prix des Selbstdarstellung</em> gezeigt!
</p>
<p class='vspace'>Wie üblich sind wir auch da für deine Frage um den freie Tools für Grafik!
</p>
<p class='vspace'>Wenn das Wetter stimmt, findet das ganze Outdoor statt, und es fehlen bestimmt nicht ein paar leckere Sachen zum knabbern...
</p>
<p class='vspace'>Ah, und hier ist das (sehr) kurzes Stop-Motion-Film, dass wir in Juli gedreht haben!
</p>
<p class='vspace'>(:youtube gqAC9cluJCU:)
</p>
<p class='vspace'>See you on Sunday!
</p>
<div class='vspace'></div><h2>Herbstprogramm 2011</h2>
<p class='vspace'><strong>2. oktober 2011</strong><br /><strong>111 Selbstdarstellung</strong><br />Wir arbeiten kollaborativ an unsere Selbstdarstellung!<br />Cliparts? Bildbearbeitung und Fotoediting? Oder digital ein Porträt Malen? Ein kleiner Stopmotion-Film? Bringe viel Fantasie mit, und wir helfen dir deine Idee mit Libre Graphics Software zu verwiklichen!<br />Alle die Werken werden am 11.11.2011 am <em>Grand Prix des Selbstdarstellung</em> im Dock18 gezeigt.
</p>
<p class='vspace'><strong>6. November 2011</strong><br /><strong>Farbmanagement und Freie Software</strong><br />ICC-Profile installieren, sich Farbprofile beschaffen und erstellen, Farbkonversion... und möglichst farbtreue Resultate: das ist auch mit Freier Software möglich!
</p>
<p class='vspace'><strong>4. Dezember 2011</strong><br /><strong>Swiss Libre Graphics Developer Get-Together</strong><br />Wir laden alle ein, die in die Libre Graphics Comunities mitwirken... oder Aktiv werden wollen! Programmierer, Dokumentatoren, Supporter aus der ganze Schweiz sind eingeladen den ganzen Sonntagnachmittag zu verbrigen und Ideen auszutauschen.
</p>
<p class='vspace'><strong>1. Januar 2012</strong><br /><strong> Toonloop workshop</strong><br />Im Ramen vom Public Domain Day, gehen wir im 'Kafi für dich' mit einem Stop-Motion Workshop. Lego, Playmobil, Knetteig und Webcam mitnehmen!
</p>
<p class='vspace'>Jeden 1en Sonntag im Monat von 14 bis 18 Uhr trifft sich das Grafiklabor im <a class='urllink' href='http://dock18.ch' title='' rel='nofollow'>Dock18</a>, das Raum für Medienkultur der Welt in der <a class='urllink' href='http://rotefabrik.ch' title='' rel='nofollow'>Rote Fabrik</a>
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Scribus-icons-magnifier?when=2011-09-29T12:41:55Z</link>
<title>Blog / Does anybody have a magnifying glass at home?</title>
<dc:date>2011-09-29T12:45:00Z</dc:date>
<pubDate>Thu, 29 Sep 2011 12:45:00 GMT</pubDate>
<description><![CDATA[<p>Today, I was looking for an icon for switching the page previews in the "arrange pages" dialog. An eye? A magnifying glass?
</p>
<p class='vspace'>Well, it's not really about making the item visible. And it has not much to do with a magnifying glass... Yes, I know: the magnifying glass is THE icon for zooming, for previewing and for searching. Wait: is it not a bit too much?
</p>
<p class='vspace'>Let's have closer look at how Scribus is using the magnifying glass:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-icons-magnifier/Scribus-icons-magnifier.png' alt='' title='' /></div>
<p class='vspace'>May I give my opinion?
</p><ul><li>I like the magnifier for the zoom buttons.
</li><li>We probably don't need an icon for the search and replace menu item.
</li><li>We should use the same symbol for both the print and the on canvas previews. Is the magnifier the right one?
</li><li>The same for the preflight verifier.
</li></ul><p class='vspace'>I still don't have an icon for the "arrange pages" dialog (no, I really don't think that a magnifying glass is a good idea...), but I'm open to your suggestions!
</p>
<p class='vspace'>But, really: does anybody &#8211; still &#8211; use magnifying glasses for looking at her DTP work?
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Arabic-text-in-a-Scribus-render-frame?when=2011-09-28T13:32:35Z</link>
<title>Blog / Arabic text in a Scribus render frame</title>
<dc:date>2011-09-28T13:15:00Z</dc:date>
<pubDate>Wed, 28 Sep 2011 13:15:00 GMT</pubDate>
<description><![CDATA[<p>Despite some big efforts Scribus still does not support Arabic text... this could change soon, but -- as it often happens -- it will be there when it's ready... whatever that means.
</p>
<p class='vspace'>But, if you need to put some Arabic text into Scribus, there is a workaround: use a "render frame" and Latex.<br />This won't allow you to create full books, since you can't link render frames, but it could help in some cases!
</p>
<p class='vspace'>First you will have to get the necessary packages. On a Debian system you will need to install:
</p><ul><li>Scribus 1.4RC5
</li><li>texlive and textlive-lang-arabic
</li></ul><p class='vspace'>Now, you can follow this thread in the Q&amp;A site for TeX and Latex:<br /><a class='urllink' href='http://tex.stackexchange.com/questions/8476/scribus-arabic' title='' rel='nofollow'>http://tex.stackexchange.com/questions/8476/scribus-arabic</a>
</p>
<p class='vspace'>The steps are quite easy:
</p>
<p class='vspace'>First add the support for Arabic text to the document embedded by typing the following command in the Fonts/Headers tab
</p><pre class='escaped'>
\usepackage{arabtex}
\usepackage{utf8}
</pre>
<p class='vspace'>Then put the Arabic text in the "Code" field. Since i have no -- really no! -- knowledge of Arabic, I took a post from another thread about this same topic (I checked with an automatic translator: it should be something related to this topic!):
</p><pre class='escaped'>
\begin{arabtex}
\setcode{utf8}
\setarab
\RL{ ... put your text here ... }
\end{arabtex}
</pre>
<p class='vspace'>And this is what it will look like:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Arabic-text-in-a-Scribus-render-frame/Arabic-text-in-a-Scribus-render-frame.png' alt='' title='' /></div>
<p class='vspace'>I can only hope that the result is somehow correct... and i hope that the space at the top right corner is an indent and not a rendering error!
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Scribus-translucent-drop-shadows-for-text?when=2011-09-27T06:48:02Z</link>
<title>Blog / Translucent drop shadows for text in Scribus</title>
<dc:date>2011-09-27T06:50:00Z</dc:date>
<pubDate>Tue, 27 Sep 2011 06:50:00 GMT</pubDate>
<description><![CDATA[<p>You will have a hard time to convince me that drop shadows are a good idea. but -- since so many people see to be wanting them -- let's find out how to them with Scribus.
</p>
<p class='vspace'>First a bad news: Scribus does not have transparent drop shadows, yet! (and -- generally  speaking -- text transparencies are not well supported by Scribus).
</p>
<p class='vspace'>But, with a bit of work you can achieve this:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-translucent-drop-shadows-for-text/Scribus-translucent-drop-shadows-for-text-01.png' alt='' title='' /></div>
<p class='vspace'>Scribus-translucent-drop-shadows-for-text-01.png
</p>
<p class='vspace'>There is one big constraint: you will have to wait and create the drop shadow after having finished to edit and layout your text, since it won't be editable any more.
</p>
<p class='vspace'>Let's go!
</p>
<p class='vspace'>First, type your text in a text frame and set it to the correct size and color (You will probably also want to have a picture or a solid color in the background... otherwise the transparency does not make much sense).
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-translucent-drop-shadows-for-text/Scribus-translucent-drop-shadows-for-text-02.png' alt='' title='' /></div>
<p class='vspace'>Scribus-translucent-drop-shadows-for-text-02.png
</p>
<p class='vspace'>Then, set an outline of a few percents for the whole frame:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-translucent-drop-shadows-for-text/Scribus-translucent-drop-shadows-for-text-03.png' alt='' title='' /></div>
<p class='vspace'>Scribus-translucent-drop-shadows-for-text-03.png
</p>
<p class='vspace'>Make a copy of the frame and remove the outline effect.
</p>
<p class='vspace'>Now we have two frames with the same content and at the same place, one with the outline effect in the behind and one without in the front.
</p>
<p class='vspace'>Click on the one behind by holding down the "ctrl" key while clicking on the area where the frames are (clicking with the "ctrl" key pressed will cycle through the items below the cursor: try it out!) and convert it to outlines ("Item &gt; Convert to... &gt; Outlines").
</p>
<p class='vspace'>Select the group of outlines, ungroup it and without deselecting the items combine them ("Item &gt; Combine polygons"; again, you have to press the "ctrl" key to reach the item in the background). Now you can select the combined shape, go to the Properties palette &gt; Colors and set the opacity for the shadow's line color! (and, eventually, a different opacity for the text frame).
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Scribus-translucent-drop-shadows-for-text/Scribus-translucent-drop-shadows-for-text-04.png' alt='' title='' /></div>
<p class='vspace'>Scribus-translucent-drop-shadows-for-text-04.png
</p>
<p class='vspace'>I wonder if all those steps can be recorded in a script...
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Grafiklabor-Toonloop-Stopmotion?when=2011-09-30T13:53:59Z</link>
<title>Blog / Drehe deinen eigenen Stop-Motion Film!</title>
<dc:date>2011-07-01T10:00:00Z</dc:date>
<pubDate>Fri, 01 Jul 2011 10:00:00 GMT</pubDate>
<description><![CDATA[<h2>Toonloop<br />Drehe deinen eigenen Stop-Motion Film!<br />Sonntag, 3. Juli 2011, <a class='urllink' href='http://dock18.ch' title='' rel='nofollow'>Dock</a> 18, Rote Fabrik, Zürich</h2>
<p>Alexandre Quessy -- Künstler und Programmierer aus Montreal -- hat sein Masterstudium noch nicht abgeschlossen, doch der praktische Teil seine Masterarbeit findet sich bereits in den Ubuntu-Repositories: <a class='urllink' href='http://toonloop.com' title='' rel='nofollow'>Toonloop</a>!
</p>
<p class='vspace'>Toonloop ist ein minimalistisches und doch äusserst mächtiges Programm, das Stop-Motion Videos "dreht".
</p>
<p class='vspace'>Sein Fokus liegt dabei auf der Live-Verarbeitung von Tanz-Aufführungen:
</p>
<p class='vspace'>(:youtube Wt27C4dAAMA:)
</p>
<p class='vspace'>In unserem Workshop werden wir uns darauf begrenzen, kleine Gegenstände vor einer Webcam zum Leben zu erwecken:
</p>
<p class='vspace'>(:vimeo 8691969:)
</p>
<p class='vspace'>Lego und Playmobil sind vorhanden, eigene Ideen und Objekte sind aber äussert willkommen! (Knetteig, Stoff, Papier-Farben-und-Schere oder Smarties...)
</p>
<p class='vspace'>Ein Computer mit Webcam und Toonloop ist vorhanden (am bestens läuft Toonloop unter Ubuntu!) aber bringe auch deinen eigenen Laptop.
</p>
<p class='vspace'>Jeden 1en Sonntag im Monat von 14 bis 18 Uhr trifft sich das Grafiklabor im <a class='urllink' href='http://dock18.ch' title='' rel='nofollow'>Dock18</a>, das Raum für Medienkultur der Welt in der <a class='urllink' href='http://rotefabrik.ch' title='' rel='nofollow'>Rote Fabrik</a>
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
<item>
<author>ale</author>
<link>http://www.graphicslab.org/Blog/Inkscape-clipart-eye?when=2011-06-08T19:21:14Z</link>
<title>Blog / Drawing a simple eye with Inkscape</title>
<dc:date>2011-06-08T19:25:00Z</dc:date>
<pubDate>Wed, 08 Jun 2011 19:25:00 GMT</pubDate>
<description><![CDATA[<p>Do you want to draw a simple clipart-like eye with Inkscape?
</p>
<p class='vspace'>First, let's see how the final result will look like:
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-00.png' alt='' title='' /></div>
<p class='vspace'>The first step is quite simple: draw three ellipses, one black and two white ones
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-01.png' alt='' title='' /></div>
<p class='vspace'>You will probably want to rotate at least some of the elipses: click twice with the "Select and transform" tool on the ellipse to enable the "rotation" arrows.
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-02.png' alt='' title='' /></div>
<p class='vspace'>You can set the color of the ellipse by clicking on the color toolbar at the bottom of the window.
</p>
<p class='vspace'>Put the small white ellipse on top of the black one, select both ellipses and combine them with <code>Path &gt; Difference</code> to make one single shape out of them.
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-03.png' alt='' title='' /></div>
<p class='vspace'>Put the irid / pupil on top of the big white ellipse ("the eye")...
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-04.png' alt='' title='' /></div>
<p class='vspace'>Click on the white ellipse, duplicate it (<code>Edit &gt; Duplicate</code>), add the irid to the selection by clicking on it while the shift and alt key are pressed (the shift key extends the selection and the alt one allows select an object below another one covering it).
</p>
<p class='vspace'>If everything is correctly selected, <code>Path &gt; Intersection</code> will remove the "overflowing" part of the irid, delete the duplicated big ellipse and let the original big ellipse show up again, below the irid). If you get a "wrong" result, you can use the undo function (ctrl+z) to go back to the previous shapes.
</p>
<p class='vspace'>Finally, since you want two eyes, duplicate the result, mirror it (<code>Object &gt; Flip horizontal</code>) and move it to the right with the right arrow key.
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-05.png' alt='' title='' /></div>
<p class='vspace'>Ah, no, that was not my final goal... I wanted to draw a turtle!
</p>
<div class='vspace'></div><div><img src='http://graphicslab.org/upload//Blog/Inkscape-clipart-eye/Inkscape-clipart-eye-06.png' alt='' title='' /></div>
<p class='vspace'>Isn't it cute?
</p>
<p class='vspace'>P.S.: if you prefer it as a video, here it is!
</p>
<p class='vspace'>(:youtube 3we-cWz2RIg:)
</p>
]]></description><dc:contributor>ale</dc:contributor>
</item>
</channel>
</rss>

