<?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>Phil Hunter &#187; WMF</title>
	<atom:link href="http://blog.philhunter.com/tag/wmf/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.philhunter.com</link>
	<description>Mac, Linux and everthing else!</description>
	<lastBuildDate>Tue, 01 Jun 2010 20:22:04 +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>Using Windows Clip Art on a Mac</title>
		<link>http://blog.philhunter.com/2008/08/20/using-windows-clip-art-on-a-mac/</link>
		<comments>http://blog.philhunter.com/2008/08/20/using-windows-clip-art-on-a-mac/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 16:20:38 +0000</pubDate>
		<dc:creator>phil</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PICT]]></category>
		<category><![CDATA[WMF]]></category>

		<guid isPermaLink="false">http://blog.philhunter.com/?p=12</guid>
		<description><![CDATA[Having recently convinced my wife that she needed to make the switch to Mac OS X I was horrified to find that the Mac would not open WMF files.  Over the years I have accumulated a large collection of clip art files in the WMF (Windows Metafile) file format and didn&#8217;t really want to start [...]]]></description>
			<content:encoded><![CDATA[<p>Having recently convinced my wife that she needed to make the switch to Mac OS X I was horrified to find that the Mac would not open WMF files.  Over the years I have accumulated a large collection of clip art files in the WMF (<a title="Windows Metafile" href="http://en.wikipedia.org/wiki/Windows_Metafile">Windows Metafile</a>) file format and didn&#8217;t really want to start again.</p>
<p>I found the quickest way to resolve this was to convert all of my existing WMF file into the PICT file format.  Using one of my Linux servers I ran the following shell command against my picture library:</p>
<p><code>find /home/user/clipart/ *.WMF -print0 | while IFS= read -rd $'\0' f;<br />
do echo "[$f]";<br />
convert "$f" "$f.pict";<br />
rm -f "$f";<br />
done</code></p>
<p>This creates a list of files who&#8217;s file-name ends with WMF.  We then loop through each of these file-names converting each and saving it with a .pict file extension.  The <em>IFS= read -rd</em> parameters are absolutely necessary should your WMF files contain spaces.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.philhunter.com/2008/08/20/using-windows-clip-art-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
