<?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: System Icon Viewer</title>
	<atom:link href="http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/</link>
	<description>On Mac OS X programming</description>
	<lastBuildDate>Sat, 07 Jan 2012 04:23:42 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jils</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-30149</link>
		<dc:creator>jils</dc:creator>
		<pubDate>Wed, 12 Nov 2008 17:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-30149</guid>
		<description>This is a great tool for Mac devs. Thanks for making it available.</description>
		<content:encoded><![CDATA[<p>This is a great tool for Mac devs. Thanks for making it available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chardish</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-15661</link>
		<dc:creator>Chardish</dc:creator>
		<pubDate>Thu, 03 Apr 2008 20:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-15661</guid>
		<description>Thanks for this! As a new Cocoa developer, this is very handy for me.</description>
		<content:encoded><![CDATA[<p>Thanks for this! As a new Cocoa developer, this is very handy for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Gable</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-4879</link>
		<dc:creator>Vincent Gable</dc:creator>
		<pubDate>Mon, 10 Sep 2007 14:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-4879</guid>
		<description>Thanks for making this available, it has really helped me find the right icons to use.</description>
		<content:encoded><![CDATA[<p>Thanks for making this available, it has really helped me find the right icons to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mr_noodle</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-25</link>
		<dc:creator>mr_noodle</dc:creator>
		<pubDate>Thu, 19 Oct 2006 14:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-25</guid>
		<description>Ah, that explains the clipping on the Carbon end though it seems that NSImage is able to wrangle up a 64x64 version. But thanks for the heads up.

Interesting tool. I think one of the major points of this discussion is that the category is mostly unnecessary plus mine is not really a maintained tool so I wouldn&#039;t worry if I were you.</description>
		<content:encoded><![CDATA[<p>Ah, that explains the clipping on the Carbon end though it seems that NSImage is able to wrangle up a 64&#215;64 version. But thanks for the heads up.</p>
<p>Interesting tool. I think one of the major points of this discussion is that the category is mostly unnecessary plus mine is not really a maintained tool so I wouldn&#8217;t worry if I were you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hosey</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-24</link>
		<dc:creator>Peter Hosey</dc:creator>
		<pubDate>Tue, 17 Oct 2006 21:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-24</guid>
		<description>Very nice. There is one bug: The icon size between 128 and 32 is 48, not 64; that&#039;s why the icon is clipped in the 64-pt Carbon image well (it uses the next larger rep, which is 128, and you told it not to scale, so it clips).

Also, I wrote a similar app called &lt;a href=&quot;http://boredzo.org/icongrabber/&quot; rel=&quot;nofollow&quot;&gt;IconGrabber&lt;/a&gt;. I was still learning Cocoa at the time, and hadn&#039;t yet found out that iconForFileType: could do HFS types; it uses GetIconRef for type/creator combinations. You can supply a creator, or leave it blank to use kSystemIconsCreator. It also supports NSImage names, filename extensions (iconForFileType: again), and MIME types, as well as various icon transformations (e.g. disabled, selected, scaling). And you can save any icon as a TIFF file.

Mine doesn&#039;t have any reusable categories, though, so yours has the advantage there. :)</description>
		<content:encoded><![CDATA[<p>Very nice. There is one bug: The icon size between 128 and 32 is 48, not 64; that&#8217;s why the icon is clipped in the 64-pt Carbon image well (it uses the next larger rep, which is 128, and you told it not to scale, so it clips).</p>
<p>Also, I wrote a similar app called <a href="http://boredzo.org/icongrabber/" rel="nofollow">IconGrabber</a>. I was still learning Cocoa at the time, and hadn&#8217;t yet found out that iconForFileType: could do HFS types; it uses GetIconRef for type/creator combinations. You can supply a creator, or leave it blank to use kSystemIconsCreator. It also supports NSImage names, filename extensions (iconForFileType: again), and MIME types, as well as various icon transformations (e.g. disabled, selected, scaling). And you can save any icon as a TIFF file.</p>
<p>Mine doesn&#8217;t have any reusable categories, though, so yours has the advantage there. <img src='http://www.noodlesoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mr_noodle</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-10</link>
		<dc:creator>mr_noodle</dc:creator>
		<pubDate>Sun, 10 Sep 2006 16:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-10</guid>
		<description>Sorry. Just learning WordPress. Should be working now.</description>
		<content:encoded><![CDATA[<p>Sorry. Just learning WordPress. Should be working now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesper</title>
		<link>http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/comment-page-1/#comment-6</link>
		<dc:creator>Jesper</dc:creator>
		<pubDate>Sun, 10 Sep 2006 15:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.noodlesoft.com/blog/2006/09/10/system-icon-viewer/#comment-6</guid>
		<description>Link&#039;s dead.</description>
		<content:encoded><![CDATA[<p>Link&#8217;s dead.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

