<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating a high-resolution poster with Processing</title>
	<atom:link href="http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/feed/" rel="self" type="application/rss+xml" />
	<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 18:53:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Bruno Campagnolo de Paula weblog &#187; Resumo do dia para 2009-03-14</title>
		<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/comment-page-1/#comment-761</link>
		<dc:creator>Bruno Campagnolo de Paula weblog &#187; Resumo do dia para 2009-03-14</dc:creator>
		<pubDate>Sun, 15 Mar 2009 03:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://zehfernando.com/?p=437#comment-761</guid>
		<description>[...] Zeh Fernando » Blog Archive » Creating a high-resolution poster with Processing [...]</description>
		<content:encoded><![CDATA[<p>[...] Zeh Fernando » Blog Archive » Creating a high-resolution poster with Processing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeh</title>
		<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/comment-page-1/#comment-756</link>
		<dc:creator>Zeh</dc:creator>
		<pubDate>Sun, 08 Mar 2009 17:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://zehfernando.com/?p=437#comment-756</guid>
		<description>Jeff: as I say on the text above, the reason why the font is re-created for every new size is to *avoid* resizing the original font, which is based on an image - scaling it up or down loses quality. Running a new createFont() for every new size is works a lot better when creating an image, even if it&#039;s sort of a brute-force, slow solution.</description>
		<content:encoded><![CDATA[<p>Jeff: as I say on the text above, the reason why the font is re-created for every new size is to *avoid* resizing the original font, which is based on an image &#8211; scaling it up or down loses quality. Running a new createFont() for every new size is works a lot better when creating an image, even if it&#8217;s sort of a brute-force, slow solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Clark</title>
		<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/comment-page-1/#comment-755</link>
		<dc:creator>Jeff Clark</dc:creator>
		<pubDate>Sun, 08 Mar 2009 17:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://zehfernando.com/?p=437#comment-755</guid>
		<description>// Use createFont and size smoothly however you want.

PFont myFont;

void setup() {
  size(500, 200);
  myFont = createFont(&quot;Arial&quot;, 32, true);
}

void draw() {
  background(0);
  textFont(myFont,mouseX); // any fontsize you want
  text(&quot;words&quot;, 10, 200);
}</description>
		<content:encoded><![CDATA[<p>// Use createFont and size smoothly however you want.</p>
<p>PFont myFont;</p>
<p>void setup() {<br />
  size(500, 200);<br />
  myFont = createFont(&#8220;Arial&#8221;, 32, true);<br />
}</p>
<p>void draw() {<br />
  background(0);<br />
  textFont(myFont,mouseX); // any fontsize you want<br />
  text(&#8220;words&#8221;, 10, 200);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeh</title>
		<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/comment-page-1/#comment-751</link>
		<dc:creator>Zeh</dc:creator>
		<pubDate>Tue, 03 Mar 2009 00:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://zehfernando.com/?p=437#comment-751</guid>
		<description>Fala Eric,

Lógico. É assim que as coisas são feitas. O Processing é um meio-termo, tem plataformas mais complexas tipo OpenFrameworks ou C++ direto, mas o resultado é o mesmo. Vê os testes que o cara do flight404.com faz, tem bastante coisa de Processing na mesma linha. No site do Processing mesmo também tem zilhòes.</description>
		<content:encoded><![CDATA[<p>Fala Eric,</p>
<p>Lógico. É assim que as coisas são feitas. O Processing é um meio-termo, tem plataformas mais complexas tipo OpenFrameworks ou C++ direto, mas o resultado é o mesmo. Vê os testes que o cara do flight404.com faz, tem bastante coisa de Processing na mesma linha. No site do Processing mesmo também tem zilhòes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erick Wilder</title>
		<link>http://zehfernando.com/2009/creating-a-high-resolution-poster-with-processing/comment-page-1/#comment-750</link>
		<dc:creator>Erick Wilder</dc:creator>
		<pubDate>Mon, 02 Mar 2009 23:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://zehfernando.com/?p=437#comment-750</guid>
		<description>Cara, realmente achei interessante isso. Dei uma olhada no site e tem coisas impressionantes *MESMO*. Pergunta: coisas como o clipe do Radio Head, feito com data visualization podem ser feitas com Processing?
Parabéns pelo trampo!</description>
		<content:encoded><![CDATA[<p>Cara, realmente achei interessante isso. Dei uma olhada no site e tem coisas impressionantes *MESMO*. Pergunta: coisas como o clipe do Radio Head, feito com data visualization podem ser feitas com Processing?<br />
Parabéns pelo trampo!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

