<?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>xperiments.es &#187; Pixel Bender</title>
	<atom:link href="http://xperiments.es/blog/en/category/actionscript/pixel-bender/feed/" rel="self" type="application/rss+xml" />
	<link>http://xperiments.es/blog</link>
	<description>Desarrollo web freelance &#124; Expertos en flash &#124; Barcelona Perpignan</description>
	<lastBuildDate>Sat, 11 Feb 2012 18:31:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AS3 Differents approaches for image format read/write.</title>
		<link>http://xperiments.es/blog/en/as3-diferentes-clases-para-leerescribir-ficheros-de-imagen/</link>
		<comments>http://xperiments.es/blog/en/as3-diferentes-clases-para-leerescribir-ficheros-de-imagen/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:04:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Alchemy]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Pixel Bender]]></category>

		<guid isPermaLink="false">http://xperiments.es/blog/?p=348</guid>
		<description><![CDATA[JPEG

FP10 &#8211; Asynchronous jpeg encoding width Alchemy
http://segfaultlabs.com/devlogs/alchemy-asynchronous-jpeg-encoding
http://segfaultlabs.com/devlogs/swf/alchemy/jpeg_alchemy.zip
FP9 &#8211; Merging BitmapData objects to single JPEG file
http://blog.inspirit.ru/?p=289
http://blog.inspirit.ru/wp-content/uploads/jpgmerge/jpeg_encoder.rar

GIF

http://code.google.com/p/as3gif/
Decoding
http://as3gif.googlecode.com/files/GIFPlayer%200.6.zip
Encoding
http://as3gif.googlecode.com/files/GIFEncoder%200.1.zip
PNG

Async PNG encoding and merging
http://blog.inspirit.ru/?p=378
http://code.google.com/p/in-spirit/wiki/PNGEncoder
http://in-spirit.googlecode.com/files/PNGEncoder.swc.zip

BMP

Decoder
http://snippets.libspark.org/trac/wiki/munegon/BMPDecoder
Encoder
http://www.senocular.com/flash/actionscript/?file=ActionScript_3.0/com/senocular/images/BMPEncoder.as

TIFF

Encoder:
ActionScript 3 TIFF Encoder
http://blog.kevinhoyt.org/?p=319
http://blog.kevinhoyt.org/wp-content/tiff-encoder.zip
Decoder
http://www.ctyeung.com/AIR/index.html
http://code.google.com/p/windowsbitmapdencoder/downloads/list
http://windowsbitmapdencoder.googlecode.com/files/FileLoader_v_0_5_0.zip

ICO

Decoder
http://www.libspark.org/wiki/munegon/ICODecoder
]]></description>
			<content:encoded><![CDATA[<span class="read_later"><script type="text/javascript"><!--
			instapaper_embed( "http://xperiments.es/blog/en/as3-diferentes-clases-para-leerescribir-ficheros-de-imagen/", "AS3 Differents approaches for image format read/write.", "" );
		//--></script></span><h3>JPEG</h3>
<blockquote><p>
<strong>FP10 &#8211; Asynchronous jpeg encoding width Alchemy</strong><br />
<a href="http://segfaultlabs.com/devlogs/alchemy-asynchronous-jpeg-encoding">http://segfaultlabs.com/devlogs/alchemy-asynchronous-jpeg-encoding</a><br />
<a href="http://segfaultlabs.com/devlogs/swf/alchemy/jpeg_alchemy.zip">http://segfaultlabs.com/devlogs/swf/alchemy/jpeg_alchemy.zip</a></p>
<p><strong>FP9 &#8211; Merging BitmapData objects to single JPEG file</strong><br />
<a href="http://blog.inspirit.ru/?p=289">http://blog.inspirit.ru/?p=289</a><br />
<a href="http://blog.inspirit.ru/wp-content/uploads/jpgmerge/jpeg_encoder.rar">http://blog.inspirit.ru/wp-content/uploads/jpgmerge/jpeg_encoder.rar</a>
</p></blockquote>
<h3>GIF</h3>
<blockquote><p>
<a href="http://code.google.com/p/as3gif/">http://code.google.com/p/as3gif/</a></p>
<p><strong>Decoding</strong><br />
<a href="http://as3gif.googlecode.com/files/GIFPlayer%200.6.zip">http://as3gif.googlecode.com/files/GIFPlayer%200.6.zip</a></p>
<p><strong>Encoding</strong><br />
<a href="http://as3gif.googlecode.com/files/GIFEncoder%200.1.zip">http://as3gif.googlecode.com/files/GIFEncoder%200.1.zip</a></p></blockquote>
<h3>PNG</h3>
<blockquote><p>
<strong>Async PNG encoding and merging</strong><br />
<a href="http://blog.inspirit.ru/?p=378">http://blog.inspirit.ru/?p=378</a><br />
<a href="http://code.google.com/p/in-spirit/wiki/PNGEncoder">http://code.google.com/p/in-spirit/wiki/PNGEncoder</a><br />
<a href="http://in-spirit.googlecode.com/files/PNGEncoder.swc.zip">http://in-spirit.googlecode.com/files/PNGEncoder.swc.zip</a>
</p></blockquote>
<h3>BMP</h3>
<blockquote><p>
<strong>Decoder</strong><br />
<a href="http://snippets.libspark.org/trac/wiki/munegon/BMPDecoder">http://snippets.libspark.org/trac/wiki/munegon/BMPDecoder</a></p>
<p><strong>Encoder</strong><br />
<a href="http://www.senocular.com/flash/actionscript/?file=ActionScript_3.0/com/senocular/images/BMPEncoder.as">http://www.senocular.com/flash/actionscript/?file=ActionScript_3.0/com/senocular/images/BMPEncoder.as</a>
</p></blockquote>
<h3>TIFF</h3>
<blockquote><p>
<strong>Encoder:</strong><br />
ActionScript 3 TIFF Encoder<br />
<a href="http://blog.kevinhoyt.org/?p=319">http://blog.kevinhoyt.org/?p=319</a><br />
<a href="http://blog.kevinhoyt.org/wp-content/tiff-encoder.zip">http://blog.kevinhoyt.org/wp-content/tiff-encoder.zip</a></p>
<p><strong>Decoder</strong><br />
<a href="http://www.ctyeung.com/AIR/index.html">http://www.ctyeung.com/AIR/index.html</a><br />
<a href="http://code.google.com/p/windowsbitmapdencoder/downloads/list">http://code.google.com/p/windowsbitmapdencoder/downloads/list</a><br />
<a href="http://windowsbitmapdencoder.googlecode.com/files/FileLoader_v_0_5_0.zip">http://windowsbitmapdencoder.googlecode.com/files/FileLoader_v_0_5_0.zip</a>
</p></blockquote>
<h3>ICO</h3>
<blockquote><p>
<strong>Decoder</strong><br />
<a href="http://www.libspark.org/wiki/munegon/ICODecoder">http://www.libspark.org/wiki/munegon/ICODecoder</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://xperiments.es/blog/en/as3-diferentes-clases-para-leerescribir-ficheros-de-imagen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Interesting projects on Google Code</title>
		<link>http://xperiments.es/blog/en/2-interesting-projects-on-google-code/</link>
		<comments>http://xperiments.es/blog/en/2-interesting-projects-on-google-code/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 17:53:27 +0000</pubDate>
		<dc:creator>xperiments</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Pixel Bender]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://xperiments.es/blog/2009/06/2-interesting-projects-on-google-code/</guid>
		<description><![CDATA[Blendmodes4flash: New blend modes 4 flash using Pixel Bender.
Vectorizationpackage: A library for client side Vectoriztion of Bitmap Images.
]]></description>
			<content:encoded><![CDATA[<span class="read_later"><script type="text/javascript"><!--
			instapaper_embed( "http://xperiments.es/blog/en/2-interesting-projects-on-google-code/", "2 Interesting projects on Google Code", "" );
		//--></script></span><p><a href="http://code.google.com/p/blendmodes4flash/">Blendmodes4flash</a>: New blend modes 4 flash using Pixel Bender.</p>
<p><a href="http://code.google.com/p/vectorizationpackage/">Vectorizationpackage</a>: A library for client side Vectoriztion of Bitmap Images.</p>
]]></content:encoded>
			<wfw:commentRss>http://xperiments.es/blog/en/2-interesting-projects-on-google-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

