<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Fun Media-Processing</title>
<link>http://blog.roodo.com/processing/archives/cat_447607.html</link>
<description>

  
    　
    數位藝術、互動設計、新媒體藝術
    
  





  
    
    Blog&amp;nbsp; \&amp;nbsp; About us&amp;nbsp; \ 
  

 


_uacct = &quot;UA-1742639-2&quot;;
urchinTracker();
</description>
<language>zh-tw</language>
<generator>Roodo Blog System</generator>
<copyright>All Rights Reserved</copyright>
<atom:link href="http://blog.roodo.com/processing/archives/cat_447607.xml" rel="self" type="application/rss+xml" />
<item>
	<title>Processing + Gif 動畫</title>
	<description><![CDATA[
			GifAnimation is a Processing library to play and export GIFanimations. It is under a GPL license. The GIF Encoder &amp; Decoder were written by Kevin Weiner. please see the separate copyright notice in the headers of the GifDecoder &amp; GifEncoder classes.或許大家都會遇到在Processing加入動畫的困擾，現在有Library可以呼叫引用插入Gif的動畫。下面是使用步驟：1. 解壓縮後，將gifAnimation資料夾整個Copy至您安裝Processing的libraries資料夾內。(ex. C:\processing-\libraries\gifAnimation)2. 使用gifAnimation library前，記得引用至您的sketch。(ex. import gifAnimation.*;)3. 更詳細的用法，參見線上範例或說明。&nbsp;Download Library
		]]>
	</description>
	<content:encoded><![CDATA[
			<img class="corner iradius16" src="http://blog.roodo.com/processing/c08ed959.jpg" border="0" alt="" width="485" height="100" /><br /><font size="2"><br /></font><font size="5">G</font>ifAnimation is a <a href="http://www.processing.org/" target="_blank">Processing</a> library to play and export GIF<br />animations. It is under a GPL license. The GIF Encoder &amp; Decoder were written by <a href="http://www.fmsware.com/stuff/gif.html" target="_blank">Kevin Weiner</a>. please see the separate copyright notice in the headers of the GifDecoder &amp; GifEncoder classes.<br /><br />或許大家都會遇到在Processing加入動畫的困擾，現在有Library可以呼叫引用插入Gif的動畫。下面是使用步驟：<br /><br />1. 解壓縮後，將gifAnimation資料夾整個Copy至您安裝Processing的libraries資料夾內。(ex. C:\processing-\libraries\gifAnimation)<br />2. 使用gifAnimation library前，記得引用至您的sketch。<br />(ex. import gifAnimation.*;)<br />3. 更詳細的用法，參見<a href="http://extrapixel.ch/processing/gifAnimation/applet/" target="_blank">線上範例</a>或<a href="http://www.extrapixel.ch/processing/gifAnimation/" target="_blank">說明</a>。<br /><br /><br /><img style="width: 18px; height: 18px" src="http://blog.roodo.com/processing/89f68bc4.gif" alt="" width="18" height="18" align="absMiddle" /><font size="1">&nbsp;</font><a href="http://www.extrapixel.ch/processing/gifAnimation/gifAnimation_processing_library_v2.zip" target="_blank"><font size="2"><font color="#3399cc">Download Lib</font></font>rary</a>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/processing/archives/4989511.html</link>
	<guid>http://blog.roodo.com/processing/archives/4989511.html</guid>
	<category>Processing</category>
	<pubDate>Wed, 16 Jan 2008 00:59:35 +0800</pubDate>
</item>
<item>
	<title>簡易 Processing + Flash  通訊</title>
	<description><![CDATA[
			用Processing時常需要與Flash整合，這邊提供簡易的方法即可達到兩方通訊功能。目前僅送出字串給Flash，更進階的方式可以產生xml格式進行溝通。下面也放上範例檔(port 9007)，供需要的朋友研究。Processing 部分:import processing.net.*; int port = 9007; Server myServer; byte zero = 0; int total = 1; int total2 = 2; void setup(){ size(200, 200); myServer = new Server(this,port); } void draw(){ myServer.write(total+&quot;,&quot;+total2); myServer.write(zero); }&nbsp;Flash AS部分:createSocket ();function createSocket () {&nbsp;_root.createTextField(&quot;inputlabel&quot;,4,50,100,50,20);&nbsp;inputlabel.text = &quot;Input:&quot;;&nbsp;_root.createTextField(&quot;inputer&quot;,3,100,100,200,20);&nbsp;inputer.border = true;&nbsp;serialServer = new XMLSocket ();&nbsp;serialServer.connect (&quot;127.0.0.1&quot;, 9007);&nbsp;serialServer.onConnect = function (success) {&nbsp;&nbsp;trace (&quot;connected &quot; + success);&nbsp;};&nbsp;serialServer.onClose = function () {&nbsp;&nbsp;trace (&quot;closed&quot;);&nbsp;};&nbsp;serialServer.onData = function (data) {&nbsp;&nbsp;inputer.text = data;&nbsp;};}&nbsp;Download Source Code
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><img class="corner iradius16" src="http://blog.roodo.com/processing/29598a12.jpg" border="0" alt="" width="485" height="100" /><br /><br /><font size="5">用</font>Processing時常需要與Flash整合，這邊提供簡易的方法即可達到兩方通訊功能。目前僅送出字串給Flash，更進階的方式可以產生xml格式進行溝通。下面也放上範例檔(port 9007)，供需要的朋友研究。<br /><br /><strong>Processing 部分:</strong><br /><font size="1">import processing.net.*; <br />int port = 9007; <br />Server myServer; <br />byte zero = 0; <br />int total = 1; <br />int total2 = 2; <br />void setup(){ <br />size(200, 200); <br />myServer = new Server(this,port); <br />} <br />void draw(){ <br />myServer.write(total+&quot;,&quot;+total2); <br />myServer.write(zero); <br />}&nbsp;<br /><br /><br /></font><font size="2"><strong>Flash AS部分:</strong><br /></font><font size="1">createSocket ();<br /></font><font size="1">function createSocket () {<br />&nbsp;_root.createTextField(&quot;inputlabel&quot;,4,50,100,50,20);<br />&nbsp;inputlabel.text = &quot;Input:&quot;;<br />&nbsp;_root.createTextField(&quot;inputer&quot;,3,100,100,200,20);<br />&nbsp;inputer.border = true;<br />&nbsp;serialServer = new XMLSocket ();<br />&nbsp;serialServer.connect (&quot;127.0.0.1&quot;, 9007);<br />&nbsp;serialServer.onConnect = function (success) {<br />&nbsp;&nbsp;trace (&quot;connected &quot; + success);<br />&nbsp;};<br />&nbsp;serialServer.onClose = function () {<br />&nbsp;&nbsp;trace (&quot;closed&quot;);<br />&nbsp;};<br />&nbsp;serialServer.onData = function (data) {<br />&nbsp;&nbsp;inputer.text = data;<br />&nbsp;};<br />}<br /><br /><img style="width: 18px; height: 18px" src="http://blog.roodo.com/processing/89f68bc4.gif" alt="" width="18" height="18" align="absMiddle" />&nbsp;<a href="http://www.gongyun.tw/pf.rar" target="_blank"><font size="2"><font color="#3399cc">Download Source</font> Code</font></a></font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/processing/archives/4757407.html</link>
	<guid>http://blog.roodo.com/processing/archives/4757407.html</guid>
	<category>Processing</category>
	<pubDate>Tue, 01 Jan 2008 21:33:10 +0800</pubDate>
</item>
<item>
	<title>Processing 遇上視覺時尚</title>
	<description><![CDATA[
			Fashion Photography and Generative Artwork by Clayton Cubitt and Tom Carden早年Clayton Cubitt使用Processing創造一系列粒子應用的作品，由於視覺多樣性與幻化曲線吸引了攝影家Tom Carden的注意，Tom Carden看出圖像與流行時裝結合的淺力，於是提出合作。由Clayton Cubitt製作出高解析的黑白圖樣曲線，並與照片合成，最後應用在Metropop雜誌。Source code: http://www.processing.org/exhibition/works/metropop/applet.html
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><img style="width: 485px; height: 100px" class="corner iradius16" src="http://blog.roodo.com/processing/a57074ff.jpg" border="0" alt="" width="485" height="100" /></p><p><font size="5">F</font>ashion Photography and Generative Artwork by <a href="http://www.claytoncubitt.com/" target="_blank">Clayton Cubitt</a> and <a href="http://www.tom-carden.co.uk/" target="_blank">Tom Carden</a></p><p>早年Clayton Cubitt使用Processing創造一系列粒子應用的作品，由於視覺多樣性與幻化曲線吸引了攝影家Tom Carden的注意，Tom Carden看出圖像與流行時裝結合的淺力，於是提出合作。由Clayton Cubitt製作出高解析的黑白圖樣曲線，並與照片合成，最後應用在Metropop雜誌。<br /><br />Source code: <a href="http://www.processing.org/exhibition/works/metropop/applet.html" target="_blank">http://www.processing.org/exhibition/works/metropop/applet.html</a></p>
		<a class="acontinues" href="http://blog.roodo.com/processing/archives/4379553.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/processing/archives/4379553.html</link>
	<guid>http://blog.roodo.com/processing/archives/4379553.html</guid>
	<category>Processing</category>
	<pubDate>Sun, 28 Oct 2007 18:00:00 +0800</pubDate>
</item>
<item>
	<title>Processing 0133 beta 釋出</title>
	<description><![CDATA[
			0133 BETA | 26 October 2007Processing is Open Source Software. The PDE (Processing Development Environment) is released under the GNU GPL (General Public License). The export libraries (also known as &#39;core&#39;) are released under the GNU LGPL (Lesser General Public License).昨天打開Processing跳出更新訊息，才發現又到了0133版。十月可說是更新頻繁，在10/22就發布了0131、0132版。而0133則修正了OpenGL輸出。&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><img class="corner iradius16" src="http://blog.roodo.com/processing/5873c632.jpg" alt="" width="485" height="100" /></p><p><strong>0133 BETA |</strong> <span><font color="#808080">26 October 2007</font></span></p><p><span>Processing is Open Source Software. The PDE (Processing Development Environment) is released under the <a href="http://www.opensource.org/licenses/gpl-license.php" target="_blank">GNU GPL</a> (General Public License). The export libraries (also known as &#39;core&#39;) are released under the <a href="http://www.opensource.org/licenses/lgpl-license.php" target="_blank">GNU LGPL</a> (Lesser General Public License).</span></p><p><span>昨天打開Processing跳出更新訊息，才發現又到了0133版。十月可說是更新頻繁，在10/22就發布了0131、0132版。而0133則修正了OpenGL輸出。<br /><br /><br /></span></p><span><table border="0" cellspacing="0" cellpadding="0"><tbody><tr><td><a href="http://processing.org/download/processing-0133.tgz" target="_blank"><img style="width: 150px; height: 24px" src="http://blog.roodo.com/processing/444c0248.gif" border="0" alt="" width="150" height="24" /></a>&nbsp;</td><td>&nbsp;</td><td>&nbsp;<a href="http://processing.org/download/processing-0133.zip" target="_blank"><img src="http://blog.roodo.com/processing/7fa46087.gif" border="0" alt="" width="300" height="24" /></a></td></tr><tr><td><a href="http://processing.org/download/processing-0133.dmg" target="_blank"><img src="http://blog.roodo.com/processing/57ae52b2.gif" border="0" alt="" width="150" height="24" /></a></td><td>&nbsp;</td><td>&nbsp;<a href="http://processing.org/download/processing-0133-expert.zip" target="_blank"><img style="width: 300px; height: 24px" src="http://blog.roodo.com/processing/d8508b1d.gif" border="0" alt="" width="300" height="24" /></a></td></tr></tbody></table></span>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/processing/archives/4379103.html</link>
	<guid>http://blog.roodo.com/processing/archives/4379103.html</guid>
	<category>Processing</category>
	<pubDate>Sun, 28 Oct 2007 11:24:38 +0800</pubDate>
</item>
</channel>
</rss>