<?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>Labs &#187; adobe</title>
	<atom:link href="http://labs.creativecommons.org/category/adobe/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.creativecommons.org</link>
	<description>by Creative Commons</description>
	<lastBuildDate>Mon, 09 Nov 2009 17:29:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exempi 1.99.3 Released</title>
		<link>http://labs.creativecommons.org/2007/07/11/exempi-1993-released/</link>
		<comments>http://labs.creativecommons.org/2007/07/11/exempi-1993-released/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 20:19:26 +0000</pubDate>
		<dc:creator>Jason Kivlighn</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[liblicense]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[xmp]]></category>

		<guid isPermaLink="false">http://techblog.creativecommons.org/2007/07/11/exempi-1993-released/</guid>
		<description><![CDATA[Hubert Figuiere has released Exempi 1.99.3
An important addition in this release is the ability to serialize XMP to a string, making sidecar XMP possible.  The soon-to-be-released Liblicense 0.1 already takes advantage of this feature; it uses Exempi to read and write licenses within XMP sidecar.
Hopefully, the API will soon stabilize in preparation for the [...]]]></description>
			<content:encoded><![CDATA[<p>Hubert Figuiere has <a href="http://www.figuiere.net/hub/blog/?2007/07/10/540-exempi-1993">released Exempi 1.99.3</a></p>
<p>An important addition in this release is the ability to serialize XMP to a string, making sidecar XMP possible.  The soon-to-be-released <a href="http://wiki.creativecommons.org/Liblicense">Liblicense</a> 0.1 already takes advantage of this feature; it uses Exempi to read and write licenses within XMP sidecar.</p>
<p>Hopefully, the API will soon stabilize in preparation for the 2.0 release.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.creativecommons.org/2007/07/11/exempi-1993-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exempi 1.99.0 Released</title>
		<link>http://labs.creativecommons.org/2007/05/30/exempi-1990-released/</link>
		<comments>http://labs.creativecommons.org/2007/05/30/exempi-1990-released/#comments</comments>
		<pubDate>Wed, 30 May 2007 17:07:29 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[xmp]]></category>

		<guid isPermaLink="false">http://techblog.creativecommons.org/2007/05/30/exempi-1990-released/</guid>
		<description><![CDATA[Following on from Jon&#8217;s follow-up, Hubert Figuiere has released Exempi 1.99.0, now based on Adobe&#8217;s XMP SDK.
His blog post includes a nice snippet of code showing how to apply a CC license to a PDF:

#include &#60;exempi/xmp.h&#62;
...
XmpFilePtr f;
f = xmp_files_open_new("test.pdf", XMP_OPEN_FORUPDATE);
XmpPtr xmp = xmp_files_get_new_xmp(f);
xmp_set_property(xmp, NS_XAP_RIGHTS, "Copyright", "(c) ACME Inc., some rights reserved"
" - This work is [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from Jon&#8217;s <a href="http://techblog.creativecommons.org/2007/05/13/more-xmp-toolkit-plugs/">follow-up</a>, Hubert Figuiere has <a href="http://www.figuiere.net/hub/blog/?2007/05/29/523-exempi-1990">released Exempi 1.99.0</a>, now based on Adobe&#8217;s XMP SDK.</p>
<p>His blog post includes a nice snippet of code showing how to apply a CC license to a PDF:</p>
<blockquote><p><code><br />
#include &lt;exempi/xmp.h&gt;<br />
...<br />
XmpFilePtr f;<br />
f = xmp_files_open_new("test.pdf", XMP_OPEN_FORUPDATE);<br />
XmpPtr xmp = xmp_files_get_new_xmp(f);<br />
xmp_set_property(xmp, NS_XAP_RIGHTS, "Copyright", "(c) ACME Inc., some rights reserved"<br />
" - This work is licensed to the public under the Creative Commons Attribution-ShareAlike "<br />
"license http://creativecommons.org/licenses/by-sa/2.0/");<br />
xmp_files_put_xmp(f, xmp);<br />
xmp_free(xmp);<br />
xmp_files_close(f, XMP_CLOSE_SAFEUPDATE);<br />
</code></p></blockquote>
<p>Excellent news for the community, and for the continuing saga of XMP.</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.creativecommons.org/2007/05/30/exempi-1990-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMP Toolkit 4.1.1 Officially Released under BSD License</title>
		<link>http://labs.creativecommons.org/2007/05/14/xmp-toolkit-411-officially-released-under-bsd-license/</link>
		<comments>http://labs.creativecommons.org/2007/05/14/xmp-toolkit-411-officially-released-under-bsd-license/#comments</comments>
		<pubDate>Mon, 14 May 2007 21:23:52 +0000</pubDate>
		<dc:creator>rejon</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[gunarpenikis]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[xmp]]></category>

		<guid isPermaLink="false">http://techblog.creativecommons.org/2007/05/14/xmp-toolkit-411-officially-released-under-bsd-license/</guid>
		<description><![CDATA[That&#8217;s right, Gunar from Adobe, blogged it today and sent me an email! This is super great news that I want to blockquote:

The 4.1.1 XMP Toolkit (SDK) has been finalized and moved to the Adobe&#8217;s Developers Center.  The 4.1 Toolkit is now available under the BSD license for open source developers.


Although the previous Adobe [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, <a href="http://blogs.adobe.com/gunar/">Gunar from Adobe</a>, <a href="http://blogs.adobe.com/gunar/2007/05/xmp_411_sdk_available_under_bsd_license.html">blogged it today</a> and sent me an email! This is super great news that I want to blockquote:</p>
<blockquote><p>
The <a href="http://www.adobe.com/devnet/xmp/">4.1.1 XMP Toolkit (SDK)</a> has been finalized and moved to the Adobe&#8217;s Developers Center.  The 4.1 Toolkit is now available under the <a href="http://www.adobe.com/devnet/xmp/sdk/eula.html">BSD license</a> for open source developers.
</p>
<p>
Although the previous Adobe open source license is quite open, we decided that is was best to use a standard open source license that is respected in the open source community.  <a href="http://opensource.org/">Opensource.org</a> was invaluable in reviewing the many different open source licenses that are available.
</p>
<p>
The 4.1.1 XMP release is significant because it include the source code for developers to read, write and update XMP in popular image, document and video file formats including JPEG, PSD, TIFF, AVI, WAV, MPEG, MP3, MOV, INDD, PS, EPS and PNG.
</p>
<p><!-- technorati tags start -->
<p>Technorati Tags: <a href="http://www.technorati.com/tag/Adobe" rel="tag">Adobe</a>, <a href="http://www.technorati.com/tag/XMP" rel="tag">XMP</a></p>
</blockquote>
<p>Also, <a href="http://digg.com/software/Adobe_Releases_XMP_Toolkit_4_1_1_under_BSD_License/blog">please help digg this</a> so more can find out about it!</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.creativecommons.org/2007/05/14/xmp-toolkit-411-officially-released-under-bsd-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More XMP Toolkit Plugs</title>
		<link>http://labs.creativecommons.org/2007/05/13/more-xmp-toolkit-plugs/</link>
		<comments>http://labs.creativecommons.org/2007/05/13/more-xmp-toolkit-plugs/#comments</comments>
		<pubDate>Sun, 13 May 2007 21:24:26 +0000</pubDate>
		<dc:creator>rejon</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[embedding]]></category>
		<category><![CDATA[lgm2007]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[xmp]]></category>

		<guid isPermaLink="false">http://techblog.creativecommons.org/2007/05/13/more-xmp-toolkit-plugs/</guid>
		<description><![CDATA[In a follow-up to Mike&#8217;s post about XMP, I (through CC) have been working with Adobe XMP&#8217;s product manager, Gunar Penikis, on how CC and Adobe can work together on XMP. Also, in the same line, I&#8217;m friends with and working with Cyrille Berger and Hubert Figuiere, who have each noted how positive of a [...]]]></description>
			<content:encoded><![CDATA[<p>In a follow-up to <a href="http://techblog.creativecommons.org/2007/05/13/adobe-xmp-toolkit-411-under-bsd/">Mike&#8217;s post about XMP</a>, <a href="http://creativecommons.org">I</a> (through CC) have been working with <a href="http://labs.adobe.com/technologies/xmptoolkit/">Adobe XMP&#8217;s product manager</a>, <a href="http://blogs.adobe.com/gunar/">Gunar Penikis</a>, on how CC and Adobe can work together on XMP. Also, in the same line, I&#8217;m friends with and working with <a href="http://cyrilleberger.blogspot.com/2007/05/thanks-to-adobe-for-freeing-xmp.html">Cyrille Berger</a> and <a href="http://www.figuiere.net/hub/blog/?2007/05/11/518-thanks-you-adobe-for-xmp">Hubert Figuiere</a>, who have <a href="http://cyrilleberger.blogspot.com/2007/05/thanks-to-adobe-for-freeing-xmp.html">each</a> <a href="http://www.figuiere.net/hub/blog/?2007/05/11/518-thanks-you-adobe-for-xmp">noted</a> how positive of a step releasing XMP SDK/Toolkit under a BSD license is for the larger community.</p>
<p>I&#8217;m having some other discussions with all the above mentioned folks with regards to how this is going to pan out, but all I can say is that it is going to encouage <a href="http://wiki.creativecommons.org/XMP">XMP</a> to flourish, and return help smooth out metadata and embedding across the board.</p>
<p>This really frees up the space for more developments</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.creativecommons.org/2007/05/13/more-xmp-toolkit-plugs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
