<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Enrico Ros &#187; fotowall</title>
	<atom:link href="http://www.enricoros.com/blog/tag/fotowall/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enricoros.com/blog</link>
	<description>Focused ideas, bleeding edge madness and code recipes.</description>
	<lastBuildDate>Mon, 19 Apr 2010 07:54:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Delicious Transblurency [1]</title>
		<link>http://www.enricoros.com/blog/2010/04/delicious-transblurency/</link>
		<comments>http://www.enricoros.com/blog/2010/04/delicious-transblurency/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 07:53:37 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[planetkde]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[x.org]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=514</guid>
		<description><![CDATA[The &#8216;focus&#8216; word has many meanings, ranging from the optical concept of &#8216;good convergence of light rays generated by an object&#8217; to the cognitive process of directing the attention to a particular target while ignoring other targets. Now the interesting part: this concept can be used in computers too, especially in user interfaces, to direct [...]]]></description>
			<content:encoded><![CDATA[<p>The &#8216;<strong>focus</strong>&#8216; word has many meanings, ranging from the optical concept of &#8216;good convergence of light rays generated by an object&#8217; to the cognitive process of directing the attention to a particular target while ignoring other targets.<br />
Now the interesting part: this concept can be used in computers too, especially in user interfaces, to direct the user to relevant information or to help him through a step-by-step process. How to do that? Since every image you see on screen is &#8216;on focus&#8217; by default, you can easily <strong>unfocus</strong> unuseful information.</p>
<p><strong>Blurring</strong> is the act of altering images so they appear out of focus. My <a href="http://ariya.blogspot.com/2008/02/to-blur-or-not-to-blur.html">Maestro</a>[2] and other <a href="http://zrusin.blogspot.com/2006/07/more-blurring.html">illustriuos</a> people already talked extensively about this topic here on <a href="http://www.planetkde.org">planet KDE</a>. However you don&#8217;t improve the world until a technology becomes available to everybody, right?</p>
<p><a href="http://www.enricoros.com/blog/wp-content/uploads/2010/04/blurandmonochrome.png"><img class="alignright size-full wp-image-519" title="blurandmonochrome" src="http://www.enricoros.com/blog/wp-content/uploads/2010/04/blurandmonochrome.png" alt="" width="312" height="150" /></a>Then some days ago I read on <a href="http://www.notmart.org/index.php/Software/Small_goodies">notmart</a>&#8216;s blog that plasma and kwin supported blurring the background on windows.. so I rebuilt KDE4 svn, restarted it, and&#8230; boy.. does it make a difference! Look at Marco&#8217;s blog or at this picture I <span style="text-decoration: underline;">stole</span> from him! All the popups become instantly more readable, even krunner does, and you immediately get the feeling that the plasma panel and all the systray applets really are above your desktop and they look as they were made of some glass/plastic material.</p>
<p>So: why limiting this just to some plasma applets? Well, I think that the usage of this effect must be wise, however I wanted that for my app too&#8230;</p>
<h3>&#8230;&#8217;cause I like eye-candy! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </h3>
<p>After a quick tour through the beautiful KDE svn I grabbed all the needed source code and loaded <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> in creator. Since I already had the structure for the <a href="http://labs.trolltech.com/blogs/2009/09/15/using-blur-behind-on-windows/">blur-behind on windows</a> in place, adding the KDE4 effect was really easy. Here are some samples of what you can get:</p>
<p style="text-align: center;"><a href="http://www.enricoros.com/blog/wp-content/uploads/2010/04/fotowall-window.jpg"><img class="size-medium wp-image-516  aligncenter" title="fotowall-window" src="http://www.enricoros.com/blog/wp-content/uploads/2010/04/fotowall-window-300x214.jpg" alt="Fotowall using KWin's new Blur effect." width="300" height="214" /></a></p>
<p>To activate the back blur you need:</p>
<ul>
<li>obviously an application with a transparent background. Qt easily allows to work with transparency on top-level windows.</li>
<li>you have to enable the &#8220;blur&#8221; effect in kwin&#8217;s &#8220;desktop effects&#8221; configuration.</li>
<li>a couple of lines of code to ask kwin to activate blurring to your window.</li>
</ul>
<p>Here is the code that does the magic:</p>
<pre class="brush: cpp; collapse: false;">
#if defined(Q_WS_X11)
/**
  Blur behind windows (on KDE4.5+)
  Uses a feature done for Plasma 4.5+ for hinting the window manager to draw
  blur behind the window.
*/
#include &lt;X11/Xlib.h&gt;
#include &lt;X11/Xatom.h&gt;
#include &lt;QX11Info&gt;
static bool kde4EnableBlurBehindWindow(WId window, bool enable, const QRegion &amp;region = QRegion())
{
    Display *dpy = QX11Info::display();
    Atom atom = XInternAtom(dpy, &quot;_KDE_NET_WM_BLUR_BEHIND_REGION&quot;, False);

    if (enable) {
        QVector&lt;QRect&gt; rects = region.rects();
        QVector&lt;quint32&gt; data;
        for (int i = 0; i &lt; rects.count(); i++) {
            const QRect r = rects[i];
            data &lt;&lt; r.x() &lt;&lt; r.y() &lt;&lt; r.width() &lt;&lt; r.height();
        }

        XChangeProperty(dpy, window, atom, XA_CARDINAL, 32, PropModeReplace,
                        reinterpret_cast&lt;const unsigned char *&gt;(data.constData()), data.size());
    } else {
        XDeleteProperty(dpy, window, atom);
    }
}
#endif
</pre>
<p>And then you can activate the blur on the caller widget with:</p>
<pre class="brush: cpp; collapse: false;">
    kde4EnableBlurBehindWindow(winId(), true);
</pre>
<p>You <em>could</em> add the back blur to your application too, however I advise you that the interface is not standardized, so don&#8217;t blame either me or the kwin authors if something changes. Here is another picture, because everybody loves them <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://www.enricoros.com/blog/wp-content/uploads/2010/04/fotowall-mainscreen.png"><img class="size-medium wp-image-524    aligncenter" title="fotowall-mainscreen" src="http://www.enricoros.com/blog/wp-content/uploads/2010/04/fotowall-mainscreen-300x202.png" alt="Another back-blurred screen in Fotowall." width="300" height="202" /></a></p>
<p><a href="http://www.enricoros.com/blog/wp-content/uploads/2010/04/fotowall-mainscreen.png"></a>And now, as a side note, a picture from my new work place: the beautiful city of San Diego, blessed by the sun and by a ton of great programmers that by some chance happen to be co-workers of me <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  With all the blue sky and long days, I can&#8217;t imagine a more inspiring place for making new blog posts and code experiments!</p>
<p style="text-align: center;"><a href="http://www.enricoros.com/blog/wp-content/uploads/2010/04/erosinsd.jpg"><img class="size-medium wp-image-525    aligncenter" title="erosinsd" src="http://www.enricoros.com/blog/wp-content/uploads/2010/04/erosinsd-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>Notes:<br />
[1] obviously the name is completely made up <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
[2] Italian word meaning &#8220;teacher&#8221; as in <em>school</em> or <em>life</em> teacher</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2010/04/delicious-transblurency/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D&amp;desc=The%20%27focus%27%20word%20has%20many%20meanings%2C%20ranging%20from%20the%20optical%20concept%20of%20%27good%20convergence%20of%20light%20rays%20generated%20by%20an%20object%27%20to%20the%20cognitive%20process%20of%20directing%20the%20attention%20to%20a%20particular%20target%20while%20ignoring%20other%20targets.%0D%0ANow%20the%20interesting%20part%3A%20this%20concept%20can%20be%20used%20in%20computers%20to" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;t=Delicious+Transblurency+%5B1%5D" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D&amp;srcUrl=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;srcTitle=Delicious+Transblurency+%5B1%5D&amp;snippet=The%20%27focus%27%20word%20has%20many%20meanings%2C%20ranging%20from%20the%20optical%20concept%20of%20%27good%20convergence%20of%20light%20rays%20generated%20by%20an%20object%27%20to%20the%20cognitive%20process%20of%20directing%20the%20attention%20to%20a%20particular%20target%20while%20ignoring%20other%20targets.%0D%0ANow%20the%20interesting%20part%3A%20this%20concept%20can%20be%20used%20in%20computers%20to" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2010/04/delicious-transblurency/&amp;title=Delicious+Transblurency+%5B1%5D" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2010/04/delicious-transblurency/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Delicious+Transblurency+%5B1%5D+-+http://b2l.me/p4v2k&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2010/04/delicious-transblurency/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Cuteness 4.6</title>
		<link>http://www.enricoros.com/blog/2009/09/cuteness-4-6/</link>
		<comments>http://www.enricoros.com/blog/2009/09/cuteness-4-6/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:01:34 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[Interests]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[planetkde]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=319</guid>
		<description><![CDATA[Seven days after the release of the Tech Preview 1, we released the latest stable Windows build of Fotowall [1] that was based on Qt 4.6. Somebody could argue that this is a bit imprudent. We did that because the benefits of the 4.6 release are worth the risk of the move! Indirect Benefits, or [...]]]></description>
			<content:encoded><![CDATA[<p>Seven days after the release of the <a href="http://labs.qt.nokia.com/blogs/2009/09/09/qt-460-tech-preview-1/">Tech Preview 1</a>, we released the latest stable Windows build of <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> [1] that was based on Qt 4.6. Somebody could argue that this is a bit <em>imprudent</em>. We did that because <strong>the benefits of the 4.6 release are worth the risk of the move</strong>!</p>
<h4>Indirect Benefits, or &#8216;what you get for free&#8217;</h4>
<ul>
<li><em>Improved quality</em> and <em>better speed</em> in the OpenGL QPainter</li>
<li><em>Better speed </em>in <a href="http://doc.trolltech.com/4.6-snapshot/graphicsview.html">the GraphicsView framework</a></li>
</ul>
<h4>Direct Benefits</h4>
<ul>
<li><a href="http://qt.nokia.com/doc/4.6-snapshot/animation-overview.html"><em>Animation Framework</em></a>: this simply r0cks! I don&#8217;t know about the whole Kinetic stuff, I just mean the ability to create <em>simple property animations</em>.<br />
I don&#8217;t have a video to show you but just take a look at the Fotowall&#8217;s Top-Bar, the tabs appear and disappear with a nice and smooth grow-shrink animation, that make the program look soo 2009-ish! finally!</li>
<li><a href="http://doc.trolltech.com/4.6-snapshot/qnetworkreply.html#isFinished"><em>QNetworkReply::isFinished</em>()</a>: thanks to this method I could implement a smart time-saver: when the user starts to drag a flickr picture, Fotowall starts downloading it. It can happen that, upon drop, the content has already been completely downloaded (so it can be placed in the canvas) or partially downloaded (so the used only needs to wait for the missing percent)</li>
</ul>
<h4>Drawbacks</h4>
<ul>
<li>There are some<em> graphics glitches</em> when animating the opacity property of a QGaphicsProxyWidget (in OpenGL)</li>
<li>Even by setting the <a href="http://doc.trolltech.com/4.6-snapshot/qgraphicsitem.html#GraphicsItemFlag-enum">QGraphicsItem::ItemSendsGeometryChanges</a> flag, the previous <em>behavior</em> is <em>not perfectly restored</em> (we used itemChange, and the new behavior doesn&#8217;t allow Fotowall&#8217;s mirrors to sync properly to the objects)</li>
</ul>
<h4>Movie Time!</h4>
<p>I&#8217;ve tried hard to record a screencast about the <em>Cuteness &amp; Performance</em> of Qt 4.6, but in the end I had to use my camera.</p>
<p><a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/"><em>Click here to view the embedded video.</em></a></p>
<p style="text-align: center;">Thanks Nokia for this great release! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>[1] <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> is a creative program to mix local and online graphics content and build original work.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6&amp;desc=Seven%20days%20after%20the%20release%20of%20the%20Tech%20Preview%201%2C%20we%20released%20the%20latest%20stable%20Windows%20build%20of%20Fotowall%20%5B1%5D%20that%20was%20based%20on%20Qt%204.6.%20Somebody%20could%20argue%20that%20this%20is%20a%20bit%20imprudent.%20We%20did%20that%20because%20the%20benefits%20of%20the%204.6%20release%20are%20worth%20the%20risk%20of%20the%20move%21%0D%0AIndirect%20Benefits%2C%20or%20%27wha" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;t=Cuteness+4.6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6&amp;srcUrl=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;srcTitle=Cuteness+4.6&amp;snippet=Seven%20days%20after%20the%20release%20of%20the%20Tech%20Preview%201%2C%20we%20released%20the%20latest%20stable%20Windows%20build%20of%20Fotowall%20%5B1%5D%20that%20was%20based%20on%20Qt%204.6.%20Somebody%20could%20argue%20that%20this%20is%20a%20bit%20imprudent.%20We%20did%20that%20because%20the%20benefits%20of%20the%204.6%20release%20are%20worth%20the%20risk%20of%20the%20move%21%0D%0AIndirect%20Benefits%2C%20or%20%27wha" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/09/cuteness-4-6/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cuteness+4.6+-+http://b2l.me/kbbnf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/09/cuteness-4-6/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.8</title>
		<link>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/</link>
		<comments>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 11:00:54 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=295</guid>
		<description><![CDATA[Fotowall 0.8.2 has just been released and we&#8217;re already getting some great feedback Cherry picked  features from the delicious 0.8 release: Now you&#8217;ll be able to deform text changing the shape of its baseline visually (see the &#8220;Fotowall&#8221; string in the image above and its Bezier control points) Pictures can be cropped to a certain [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.enricoros.com/opensource/fotowall">Fotowall</a></strong> 0.8.2 has just been released and we&#8217;re already getting some <strong>great feedback</strong> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><img class="size-full wp-image-299" style="margin-left: auto; margin-right: auto;" title="Fotowall 0.8" src="http://www.enricoros.com/blog/wp-content/uploads/2009/09/0.8.blog.png" alt="New features in Fotowall 0.8" width="489" height="368" /></p>
<p>Cherry picked <img class="alignnone size-full wp-image-311" title="cherry" src="http://www.enricoros.com/blog/wp-content/uploads/2009/09/cherry.png" alt="cherry" width="19" height="16" /> features from the delicious 0.8 release:</p>
<ul>
<li>Now you&#8217;ll be able to <strong>deform text</strong> changing the shape of its baseline visually (see the &#8220;Fotowall&#8221; string in the image above and its <a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve">Bezier</a> control points)</li>
<li>Pictures can be <strong>cropped</strong> to a certain area, for example to select a single person from a group. Also picture&#8217;s <strong>transparency</strong> can be adjusted, to create nice fading effects</li>
<li>A lot of work has been put into enabling <strong><a href="http://www.opengl.org">OpenGL</a> acceleration</strong>, really useful if your canvas has 100+ semi-transparent objects <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
<li>You can now work with a transparent window (or <a href="http://www.enricoros.com/opensource/fotowall/assets/screenshots/0.8-vista-blur-1.jpg">blurred</a>, on Vista)</li>
<li>The top-bar is now <strong>context-sensitive</strong>. We&#8217;ll move more and more content properties to that instead of the old content configuration window</li>
</ul>
<p>Plus a lot of user suggestions and fixes have been implemented to make Fotowall always <em>easier and intuitive to use</em>. The 0.8 release now ships in 6 different languages: english, italian, french, german, brazilian, polish. You can even <a href="http://www.enricoros.com/opensource/fotowall/translate">contribute your own translations</a>.</p>
<p>But our favorite news is that <a href="http://www.enricoros.com/opensource/fotowall">Fotowall now has it&#8217;s official website</a> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>What about next: we&#8217;re  working hard on the 0.9 release and we already have lots of new features! You&#8217;ll be surprised by what you&#8217;ll be able to achieve with the next version <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>A final special thank to <a href="http://zrusin.blogspot.com/">Zack Rusin</a> who created the <a href="http://zrusin.blogspot.com/2006/11/text-on-path.html">Text on path</a> example that was the basis of our shaped text.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8&amp;desc=Fotowall%200.8.2%20has%20just%20been%20released%20and%20we%27re%20already%20getting%20some%20great%20feedback%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ACherry%20picked%C2%A0%20features%20from%20the%20delicious%200.8%20release%3A%0D%0A%0D%0A%09Now%20you%27ll%20be%20able%20to%20deform%20text%20changing%20the%20shape%20of%20its%20baseline%20visually%20%28see%20the%20%22Fotowall%22%20string%20in%20the%20image%20above%20and%20its%20Bezier%20contr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;t=Fotowall+0.8" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8&amp;srcUrl=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;srcTitle=Fotowall+0.8&amp;snippet=Fotowall%200.8.2%20has%20just%20been%20released%20and%20we%27re%20already%20getting%20some%20great%20feedback%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ACherry%20picked%C2%A0%20features%20from%20the%20delicious%200.8%20release%3A%0D%0A%0D%0A%09Now%20you%27ll%20be%20able%20to%20deform%20text%20changing%20the%20shape%20of%20its%20baseline%20visually%20%28see%20the%20%22Fotowall%22%20string%20in%20the%20image%20above%20and%20its%20Bezier%20contr" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.8+-+http://b2l.me/kcm49&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Fotowall One Hundred Thousand</title>
		<link>http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/</link>
		<comments>http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 21:21:11 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/?p=239</guid>
		<description><![CDATA[Today Fotowall reached the 100&#8217;000 downloads mark! It&#8217;s a HUGE result, and it&#8217;s even more incredible if you consider that we have no homepage, no advertising other than word-of-mouth and those are the downloads of the XP/Vista release only (we have the linux and mac releases too)! If you haven&#8217;t downloaded the latest release, do [...]]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://www.enricoros.com/opensource/fotowall/" target="_blank">Fotowall</a> <strong>reached the 100&#8217;000 downloads</strong> mark! It&#8217;s a HUGE result, and it&#8217;s even more incredible if you consider that we have <em>no homepage</em>, <em>no advertising</em> other than <em>word-of-mouth</em> and those are the downloads of the XP/Vista release only (we have the linux and mac releases too)!<br />
If you haven&#8217;t downloaded the latest release, <a href="http://www.enricoros.com/opensource/fotowall/download/" target="_blank">do it now</a>! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>To celebrate this result, <strong>here is a short teaser for the upcoming version</strong> (that will be out in one week):</p>
<p><p><a href="http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/"><em>Click here to view the embedded video.</em></a></p><!-- p, li { white-space: pre-wrap; } --></p>
<p style="text-indent:0;margin:0;">A big thank you to the team: <a href="http://geenux.wordpress.com/" target="_blank">Arnaud Tanguy</a>, Alessandro Portale, Andreas Brech, Georges Dubus, and translators Martin Zimmermann and Marcio Moraes.<!--EndFragment--></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand&amp;desc=Today%20Fotowall%20reached%20the%20100%27000%20downloads%20mark%21%20It%27s%20a%20HUGE%20result%2C%20and%20it%27s%20even%20more%20incredible%20if%20you%20consider%20that%20we%20have%20no%20homepage%2C%20no%20advertising%20other%20than%20word-of-mouth%20and%20those%20are%20the%20downloads%20of%20the%20XP%2FVista%20release%20only%20%28we%20have%20the%20linux%20and%20mac%20releases%20too%29%21%0D%0AIf%20you%20haven%27t%20do" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;t=Fotowall+One+Hundred+Thousand" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand&amp;srcUrl=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;srcTitle=Fotowall+One+Hundred+Thousand&amp;snippet=Today%20Fotowall%20reached%20the%20100%27000%20downloads%20mark%21%20It%27s%20a%20HUGE%20result%2C%20and%20it%27s%20even%20more%20incredible%20if%20you%20consider%20that%20we%20have%20no%20homepage%2C%20no%20advertising%20other%20than%20word-of-mouth%20and%20those%20are%20the%20downloads%20of%20the%20XP%2FVista%20release%20only%20%28we%20have%20the%20linux%20and%20mac%20releases%20too%29%21%0D%0AIf%20you%20haven%27t%20do" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/&amp;title=Fotowall+One+Hundred+Thousand" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+One+Hundred+Thousand+-+http://b2l.me/ke2nn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/09/fotowall-one-hundred-thousand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.7</title>
		<link>http://www.enricoros.com/blog/2009/07/fotowall-0-7/</link>
		<comments>http://www.enricoros.com/blog/2009/07/fotowall-0-7/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:07:25 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/?p=197</guid>
		<description><![CDATA[Fotowall 0.7.1 has been released today! Get it while it&#8217;s hot With this release Fotowall integrates with the deep web. You can now search the network with the embedded flickr search pane and add the images to the canvas. This opens up an infinite can of content, all available for your pleasure . Other relevant [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.enricoros.com/opensource/fotowall/" target="_blank">Fotowall</a> 0.7.1</strong> has been released today! <a href="http://www.enricoros.com/opensource/fotowall/binaries" target="_blank">Get it</a> while it&#8217;s hot <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-199" title="FotoWall 0.7" src="http://enricoros.files.wordpress.com/2009/07/0-7-1-1.jpg" alt="FotoWall 0.7" width="510" height="376" /><p class="wp-caption-text">New features in Fotowall 0.7. In the top left area you can see the web image selector.</p></div>
<p>With this release Fotowall <strong>integrates with the deep web</strong>. You can now search the network with the embedded <a href="http://www.flickr.com" target="_blank">flickr</a> search pane and add the images to the canvas. This opens up an infinite can of content, all available for your pleasure <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<p>Other relevant features include:</p>
<ul>
<li>support for Qt 4.6 (brings animations and transparencies)</li>
<li>usability fixes (rubberband selection, deletion, etc..)</li>
<li>cleaner design (new icons, loadable frames, better property dialogs)</li>
<li>italian, french and german translation</li>
<li>check for updates and web links</li>
</ul>
<p>Don&#8217;t hesitate to ask for missing features and always remember that you can <span style="text-decoration: underline;">rotate pictures by dragging corners with the right mouse button</span> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Enjoy your Fotowall!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/07/fotowall-0-7/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7&amp;desc=Fotowall%200.7.1%20has%20been%20released%20today%21%20Get%20it%20while%20it%27s%20hot%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0AWith%20this%20release%20Fotowall%20integrates%20with%20the%20deep%20web.%20You%20can%20now%20search%20the%20network%20with%20the%20embedded%20flickr%20search%20pane%20and%20add%20the%20images%20to%20the%20canvas.%20This%20opens%20up%20an%20infinite%20can%20of%20content%2C%20all%20available%20for%20your%20ple" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;t=Fotowall+0.7" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7&amp;srcUrl=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;srcTitle=Fotowall+0.7&amp;snippet=Fotowall%200.7.1%20has%20been%20released%20today%21%20Get%20it%20while%20it%27s%20hot%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0AWith%20this%20release%20Fotowall%20integrates%20with%20the%20deep%20web.%20You%20can%20now%20search%20the%20network%20with%20the%20embedded%20flickr%20search%20pane%20and%20add%20the%20images%20to%20the%20canvas.%20This%20opens%20up%20an%20infinite%20can%20of%20content%2C%20all%20available%20for%20your%20ple" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/07/fotowall-0-7/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.7+-+http://b2l.me/kbkmn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/07/fotowall-0-7/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.6</title>
		<link>http://www.enricoros.com/blog/2009/04/fotowall-06/</link>
		<comments>http://www.enricoros.com/blog/2009/04/fotowall-06/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:09:17 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[posterazor]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[qtsoftware]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2009/04/29/fotowall-06/</guid>
		<description><![CDATA[L&#8217;escalation verso la 1.0 continua con una nuova milestone Se non vi sono bastate le tonnellate di migliorie della 0.5 ecco che arriva una 0.6 che quasi raddoppia la base di codice e introduce una serie di caratteristiche che danno un taglio professionale senza intaccare la facilità di interazione e la libertà di giocare con [...]]]></description>
			<content:encoded><![CDATA[<p>L&#8217;escalation verso la <strong>1.0</strong> continua con una nuova milestone <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-100" title="FotoWall 0.6" src="http://enricoros.files.wordpress.com/2009/04/06-11.png" alt="Nuove caratteristiche presenti in FotoWall 0.6" width="510" height="384" /><p class="wp-caption-text">Nuove caratteristiche presenti in Fotowall 0.6</p></div>
<p>Se non vi sono bastate le tonnellate di migliorie della 0.5 ecco che arriva una 0.6 che quasi <strong>raddoppia la base di codice</strong> e introduce una serie di caratteristiche che danno <strong>un taglio professionale</strong> senza intaccare la facilità di interazione e la libertà di giocare con Fotowall <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  E ancora non avete letto nulla&#8230;<span id="more-98"></span></p>
<p><strong><br />
Integrazione con <a href="http://posterazor.sourceforge.net">PosteRazor</a></strong></p>
<blockquote><p>Non ci vuole un pennello  grande, ma <span style="text-decoration: line-through;">un grande pen</span> Fotowall 0.6!</p></blockquote>
<p><img class="alignright size-thumbnail wp-image-102" title="PosteRazor logo" src="http://enricoros.files.wordpress.com/2009/04/making-06-posterazor.png?w=149" alt="PosteRazor logo" width="149" height="150" />PosteRazor, di <a href="http://www.casaportale.de">Alessandro Portale</a>, è un programma che consente di stampare a casa propria dei poster grandi a piacere con una stampante comune.In pratica divide l&#8217;immagine in tanti fogli che una volta ritagliati ed incollati vanno a formare un Poster.  La capacità di Fotowall di sintetizzare immagini in <em>altissima definizione</em> e l&#8217;esportazione con PosteRazor permettono di creare composizioni grafiche di risoluzione notevole in uno spazio piccolo, quale lo schermo del PC.</p>
<p>Oltretutto, l&#8217;unione di Fotowall e PosteRazor, rappresenta un avvenimento davvero raro nel panorama opensource. Sono infatti frequenti i <em>fork</em>, quando gruppi di persone vogliono evolvere un software in modo diverso dalla linea prestabilita e così si finisce con più programmi che fanno la stessa cosa, ma i <em>join</em>, come questo caso, sono davvero rarissimi! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Oggetto Video</strong>, o Specchio</p>
<p>E&#8221; un oggetto manipolabile (come le Foto o il Testo) che contiene il <em>video ripreso dalle webcam</em> collegate al PC. E&#8217; detto anche <em>specchio</em> perchè spesso i portatili sono dotati di una webcam che ti riprende, quindi è <em>un po&#8217; come inserire degli specchietti in </em>Fotowall <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Export Guidato</strong></p>
<p>L&#8217;assistente consente di esportare la scena attuale in 4 modi: impostando lo <em>sfondo del desktop</em>, <em>salvando un&#8217;immagine</em>, <em>creando un poster</em> (vedi PosteRazor), o <em>stampando</em> su carta. Ci sono tutte le opzioni necessarie per divertirsi <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Consiglio anche di vedere il modo &#8220;Dimensione Esatta&#8221; (accessibile dalla finestra principale di Fotowall), che consente lavorare a schermo all dimensione fisica specificata (tipo 15x6cm) e stampare alla medesima dimensione. <strong>WYSIWYG</strong> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Formato XML</strong></p>
<p>La scena può essere salvata e recuperata (quasi, ehm.. esattamente..) nel nuovo formato XML, che assicura compatibiltà in avanti. Da oggi in poi potrete mettere via le vostre scene Fotowall preferite.</p>
<p><strong>Selezione, Prospettiva</strong> &amp;  altri 50 commit</p>
<p>E&#8217; possibile selezionare più oggetti, spostarli o cambiare le proprietà in gruppo, cambiare la prospettiva degli oggetti (rotazione attorno agli assi X ed Y <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ), riscalare il testo come si roto-scalano le immagini, c&#8217;è l&#8217;effetto Seppia, e molto altro ancora <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Enjoy your Fotowall!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/04/fotowall-06/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6&amp;desc=L%27escalation%20verso%20la%201.0%20continua%20con%20una%20nuova%20milestone%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ASe%20non%20vi%20sono%20bastate%20le%20tonnellate%20di%20migliorie%20della%200.5%20ecco%20che%20arriva%20una%200.6%20che%20quasi%20raddoppia%20la%20base%20di%20codice%20e%20introduce%20una%20serie%20di%20caratteristiche%20che%20danno%20un%20taglio%20professionale%20senza%20intaccare%20la%20facilit%C3%A0%20di%20i" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;t=Fotowall+0.6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6&amp;srcUrl=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;srcTitle=Fotowall+0.6&amp;snippet=L%27escalation%20verso%20la%201.0%20continua%20con%20una%20nuova%20milestone%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ASe%20non%20vi%20sono%20bastate%20le%20tonnellate%20di%20migliorie%20della%200.5%20ecco%20che%20arriva%20una%200.6%20che%20quasi%20raddoppia%20la%20base%20di%20codice%20e%20introduce%20una%20serie%20di%20caratteristiche%20che%20danno%20un%20taglio%20professionale%20senza%20intaccare%20la%20facilit%C3%A0%20di%20i" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/04/fotowall-06/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.6+-+http://b2l.me/kakm8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/04/fotowall-06/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.5</title>
		<link>http://www.enricoros.com/blog/2009/04/fotowall-05/</link>
		<comments>http://www.enricoros.com/blog/2009/04/fotowall-05/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 22:19:34 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2009/04/12/fotowall-05/</guid>
		<description><![CDATA[Oggi ho rilasciato Fotowall 0.5! Tra le migliorie: - creazione e stampa di CD/DVD (by Tanguy Arnaud) - elemento Testo (completo di Editor visuale HTML-like ) - più di 50 fix sull&#8217;usabilità! - effetto GLOW Puoi scaricare qui i sorgenti se ti piace studiare il codice, oppure scarica direttamente il programma per Windows (2.8MB). Un [...]]]></description>
			<content:encoded><![CDATA[<p>Oggi ho <strong>rilasciato </strong><a href="http://www.enricoros.com/opensource/fotowall/" target="_blank">Fotowall</a><strong> 0.5</strong>!</p>
<div id="attachment_83" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-83" title="FotoWall 0.5" src="http://enricoros.files.wordpress.com/2009/04/05-1.png" alt="Show off dell'elemento Testo di FotoWall 0.5" width="510" height="429" /><p class="wp-caption-text">Show off dell&#39;elemento Testo di Fotowall 0.5</p></div>
<p>Tra le migliorie:<br />
- <strong>creazione e stampa di CD</strong>/DVD (by <em>Tanguy Arnaud</em>)<br />
- <strong>elemento Testo</strong> (completo di Editor visuale HTML-like <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )<br />
- più di 50 fix sull&#8217;<strong>usabilità</strong>!<br />
- effetto <strong>GLOW</strong></p>
<p>Puoi <a href="http://www.enricoros.com/opensource/fotowall/source-code" target="_blank">scaricare qui</a> i sorgenti se ti piace studiare il codice, oppure <a href="http://www.enricoros.com/opensource/fotowall/binaries">scarica direttamente il programma per Windows</a> (2.8MB).</p>
<p>Un rigraziamento SPECIALE all&#8217;amico <em>Ilan d&#8217;Inca</em> per il supporto, il Beta-Testing e le <strong>ideone</strong> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Al carissimo Ilan dedico questa release!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/04/fotowall-05/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5&amp;desc=Oggi%20ho%20rilasciato%20Fotowall%200.5%21%0D%0A%0D%0A%0D%0A%0D%0ATra%20le%20migliorie%3A%0D%0A-%20creazione%20e%20stampa%20di%20CD%2FDVD%20%28by%20Tanguy%20Arnaud%29%0D%0A-%20elemento%20Testo%20%28completo%20di%20Editor%20visuale%20HTML-like%20%3B-%29%20%29%0D%0A-%20pi%C3%B9%20di%2050%20fix%20sull%27usabilit%C3%A0%21%0D%0A-%20effetto%20GLOW%0D%0A%0D%0APuoi%20scaricare%20qui%20i%20sorgenti%20se%20ti%20piace%20studiare%20il%20codice%2C%20oppure%20scaric" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;t=Fotowall+0.5" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5&amp;srcUrl=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;srcTitle=Fotowall+0.5&amp;snippet=Oggi%20ho%20rilasciato%20Fotowall%200.5%21%0D%0A%0D%0A%0D%0A%0D%0ATra%20le%20migliorie%3A%0D%0A-%20creazione%20e%20stampa%20di%20CD%2FDVD%20%28by%20Tanguy%20Arnaud%29%0D%0A-%20elemento%20Testo%20%28completo%20di%20Editor%20visuale%20HTML-like%20%3B-%29%20%29%0D%0A-%20pi%C3%B9%20di%2050%20fix%20sull%27usabilit%C3%A0%21%0D%0A-%20effetto%20GLOW%0D%0A%0D%0APuoi%20scaricare%20qui%20i%20sorgenti%20se%20ti%20piace%20studiare%20il%20codice%2C%20oppure%20scaric" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-05/&amp;title=Fotowall+0.5" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/04/fotowall-05/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.5+-+http://b2l.me/kedsq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/04/fotowall-05/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fotowall News</title>
		<link>http://www.enricoros.com/blog/2008/04/fotowall-news/</link>
		<comments>http://www.enricoros.com/blog/2008/04/fotowall-news/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 16:02:41 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/?p=47</guid>
		<description><![CDATA[As many people requested, now Fotowall has become really Open Source (GPLv2) and is publicly hosted on the net!! Its new home is http://www.enricoros.com/opensource/fotowall, and for celebration 0.21 was released, with a new Icon, WinXP+ binary file and the full-res version of tutorial video I put on YouTube. Suggestions are more than appreciated, Thank you [...]]]></description>
			<content:encoded><![CDATA[<p>As <em>many people requested</em>, now <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> has become really Open Source (GPLv2) and is publicly hosted on the net!!</p>
<p>Its new home is <a href="http://www.enricoros.com/opensource/fotowall/" target="_blank">http://www.enricoros.com/opensource/fotowall</a>, and for celebration 0.21 was released, with a new Icon, WinXP+ binary file and the full-res version of tutorial video I put on YouTube.</p>
<p>Suggestions are more than appreciated,<br />
Thank you all for your support and drive <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2008/04/fotowall-news/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News&amp;desc=As%20many%20people%20requested%2C%20now%20Fotowall%20has%20become%20really%20Open%20Source%20%28GPLv2%29%20and%20is%20publicly%20hosted%20on%20the%20net%21%21%0D%0A%0D%0AIts%20new%20home%20is%20http%3A%2F%2Fwww.enricoros.com%2Fopensource%2Ffotowall%2C%20and%20for%20celebration%200.21%20was%20released%2C%20with%20a%20new%20Icon%2C%20WinXP%2B%20binary%20file%20and%20the%20full-res%20version%20of%20tutorial%20video%20I%20pu" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;t=Fotowall+News" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News&amp;srcUrl=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;srcTitle=Fotowall+News&amp;snippet=As%20many%20people%20requested%2C%20now%20Fotowall%20has%20become%20really%20Open%20Source%20%28GPLv2%29%20and%20is%20publicly%20hosted%20on%20the%20net%21%21%0D%0A%0D%0AIts%20new%20home%20is%20http%3A%2F%2Fwww.enricoros.com%2Fopensource%2Ffotowall%2C%20and%20for%20celebration%200.21%20was%20released%2C%20with%20a%20new%20Icon%2C%20WinXP%2B%20binary%20file%20and%20the%20full-res%20version%20of%20tutorial%20video%20I%20pu" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2008/04/fotowall-news/&amp;title=Fotowall+News" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2008/04/fotowall-news/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+News+-+http://b2l.me/kcce4&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2008/04/fotowall-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fotowall &#8211; Photo Collection Wallpaperizer!</title>
		<link>http://www.enricoros.com/blog/2007/12/fotowall/</link>
		<comments>http://www.enricoros.com/blog/2007/12/fotowall/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 18:50:06 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2007/12/08/fotowall/</guid>
		<description><![CDATA[update: this article is really outdated, we have a website now! see the new cool stuff @ www.enricoros.com/opensource/fotowall You always wanted to create quick graphics composition from a bunch of photos you have.. and now your dream came true! With Fotowall you can drag some pictures in the canvas, place them as you like, put a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>update: this article is really outdated, we have a <a href="http://www.enricoros.com/opensource/fotowall">website</a> now!<br />
<strong style="background-color: #ffffff;">see the new cool stuff @ <a href="http://www.enricoros.com/opensource/fotowall">www.enricoros.com/opensource/fotowall</a> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </strong></strong></p>
<p>You always wanted to create quick graphics composition from a bunch of photos you have.. and now your dream came true! With Fotowall you can drag some pictures in the canvas, place them as you like, put a title on them, change the colors and the gradients the way you like and finally <strong>render a poster-sized graphical composition</strong> of them!</p>
<p>Take  a look a this quick video tour. In less than 2 minutes you will see the whole process, from installation to the rendering of a wallpaper.</p>
<p style="text-align: center;"><p><a href="http://www.enricoros.com/blog/2007/12/fotowall/"><em>Click here to view the embedded video.</em></a></p></p>
<p>You can find the <a href="http://www.enricoros.com/opensource/fotowall/source-code" target="_blank"><strong>source code</strong></a> on <a href="http://www.enricoros.com/opensource/fotowall/">the website</a>. The program runs on every Linux or Windows (XP, Vista) out there! (So even Ilan will be able to do a &#8220;two hands saw&#8221; in his awesome OS!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
<p>Thanks goes to <strong>David Eccher</strong> for his suggestions!<br />
You rock man <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2007/12/fotowall/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;desc=update%3A%20this%20article%20is%20really%20outdated%2C%20we%20have%20a%20website%20now%21%0D%0Asee%20the%20new%20cool%20stuff%20%40%C2%A0www.enricoros.com%2Fopensource%2Ffotowall%208-%29%0D%0A%0D%0AYou%20always%20wanted%20to%20create%20quick%20graphics%20composition%20from%20a%20bunch%20of%20photos%20you%20have..%20and%20now%20your%20dream%20came%20true%21%20With%20Fotowall%20you%20can%20drag%20some%20pictures%20in%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2007/12/fotowall/&amp;t=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;srcUrl=http://www.enricoros.com/blog/2007/12/fotowall/&amp;srcTitle=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;snippet=update%3A%20this%20article%20is%20really%20outdated%2C%20we%20have%20a%20website%20now%21%0D%0Asee%20the%20new%20cool%20stuff%20%40%C2%A0www.enricoros.com%2Fopensource%2Ffotowall%208-%29%0D%0A%0D%0AYou%20always%20wanted%20to%20create%20quick%20graphics%20composition%20from%20a%20bunch%20of%20photos%20you%20have..%20and%20now%20your%20dream%20came%20true%21%20With%20Fotowall%20you%20can%20drag%20some%20pictures%20in%20t" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2007/12/fotowall/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+-+Photo+Collection+Wallpaperizer%21+-+http://b2l.me/kbgrr&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2007/12/fotowall/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
