<?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: Resize a UIImage the right way</title>
	<atom:link href="http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/</link>
	<description>Random thoughts, humor, and helpful tips</description>
	<lastBuildDate>Wed, 16 May 2012 15:39:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: UIImage Resize相关 &#124; 清风徐来，水波不兴</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-105537</link>
		<dc:creator>UIImage Resize相关 &#124; 清风徐来，水波不兴</dc:creator>
		<pubDate>Wed, 16 May 2012 15:39:33 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-105537</guid>
		<description>[...] Resize a UIImage the right way 源代码 [...]</description>
		<content:encoded><![CDATA[<p>[...] Resize a UIImage the right way 源代码 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-102972</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 03 May 2012 18:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-102972</guid>
		<description>For more details about the category warning:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/99057-new-xcode-4-3-compiler-warnings-categories.html</description>
		<content:encoded><![CDATA[<p>For more details about the category warning:</p>
<p><a href="http://www.iphonedevsdk.com/forum/iphone-sdk-development/99057-new-xcode-4-3-compiler-warnings-categories.html" rel="nofollow">http://www.iphonedevsdk.com/forum/iphone-sdk-development/99057-new-xcode-4-3-compiler-warnings-categories.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe D'Andrea</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-102950</link>
		<dc:creator>Joe D'Andrea</dc:creator>
		<pubDate>Thu, 03 May 2012 15:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-102950</guid>
		<description>OK! Easy fixes. First, instead of @interface UIImage () you want @interface UIImage (PrivateRoundedCorner). Then it will compile without errors. The &quot;Private&quot; is because this is, literally, a private extension. Next, in UIImage+Resize.m, you will want to handle ALL UIImageOrientation values. Just break on the unused ones. That&#039;s it!</description>
		<content:encoded><![CDATA[<p>OK! Easy fixes. First, instead of @interface UIImage () you want @interface UIImage (PrivateRoundedCorner). Then it will compile without errors. The &#8220;Private&#8221; is because this is, literally, a private extension. Next, in UIImage+Resize.m, you will want to handle ALL UIImageOrientation values. Just break on the unused ones. That&#8217;s it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UIImage+RoundedCorner with SDWebImage &#124; Software development support, software risk,bugs for bugs, risk analysis,</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-99292</link>
		<dc:creator>UIImage+RoundedCorner with SDWebImage &#124; Software development support, software risk,bugs for bugs, risk analysis,</dc:creator>
		<pubDate>Mon, 16 Apr 2012 08:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-99292</guid>
		<description>[...] table view. I would like the images in my table view to be resized and have round corners. I found UIImage+Resize and UIImage+RoundedCorner to do this. Both libraries works great seperately but I have not been abl to combine them. I could [...]</description>
		<content:encoded><![CDATA[<p>[...] table view. I would like the images in my table view to be resized and have round corners. I found UIImage+Resize and UIImage+RoundedCorner to do this. Both libraries works great seperately but I have not been abl to combine them. I could [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geometrico</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-98954</link>
		<dc:creator>Geometrico</dc:creator>
		<pubDate>Sat, 14 Apr 2012 12:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-98954</guid>
		<description>Strangely, when i use the resize method, i get this error : 

unrecognized selector sent to instance  *** Terminating app due to uncaught exception &#039;NSInvalidArgumentException&#039;, reason: &#039;-[UIImage resizedImage:interpolationQuality:]&quot;

there seems to be a problem with interpolationQuality. Here is how i call the method : 

UIImage *displayFinalImage = [_finalImage resizedImage:(_viewCanvas.frame.size) interpolationQuality:kCGInterpolationHigh];

what am i doing wrong?</description>
		<content:encoded><![CDATA[<p>Strangely, when i use the resize method, i get this error : </p>
<p>unrecognized selector sent to instance  *** Terminating app due to uncaught exception &#8216;NSInvalidArgumentException&#8217;, reason: &#8216;-[UIImage resizedImage:interpolationQuality:]&#8221;</p>
<p>there seems to be a problem with interpolationQuality. Here is how i call the method : </p>
<p>UIImage *displayFinalImage = [_finalImage resizedImage:(_viewCanvas.frame.size) interpolationQuality:kCGInterpolationHigh];</p>
<p>what am i doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UIImage Category Methods - Marc Charbonneau&#8217;s Blog</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-96661</link>
		<dc:creator>UIImage Category Methods - Marc Charbonneau&#8217;s Blog</dc:creator>
		<pubDate>Fri, 30 Mar 2012 20:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-96661</guid>
		<description>[...] you&#8217;ve Googled about resizing or cropping UIImage objects, chances are you&#8217;ve read Trevor Harmon&#8217;s blog post on the subject. Trevor&#8217;s solution is great, but unfortunately a little dated since changes to the iOS SDK [...]</description>
		<content:encoded><![CDATA[<p>[...] you&#8217;ve Googled about resizing or cropping UIImage objects, chances are you&#8217;ve read Trevor Harmon&#8217;s blog post on the subject. Trevor&#8217;s solution is great, but unfortunately a little dated since changes to the iOS SDK [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Charbonneau</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-96660</link>
		<dc:creator>Marc Charbonneau</dc:creator>
		<pubDate>Fri, 30 Mar 2012 20:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-96660</guid>
		<description>I&#039;ve forked Trevor&#039;s original code and put it up on GitHub for anyone who wants an updated copy. This fork includes a couple updates of my own, as well as the bug fixes written here in the comments.

https://github.com/mbcharbonneau/UIImage-Categories

I&#039;ve been using this in my own iOS projects for about a year and it&#039;s pretty stable AFAIK, but open an issue if you notice any bugs! I plan to keep it updated for future changes in the iOS SDK.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve forked Trevor&#8217;s original code and put it up on GitHub for anyone who wants an updated copy. This fork includes a couple updates of my own, as well as the bug fixes written here in the comments.</p>
<p><a href="https://github.com/mbcharbonneau/UIImage-Categories" rel="nofollow">https://github.com/mbcharbonneau/UIImage-Categories</a></p>
<p>I&#8217;ve been using this in my own iOS projects for about a year and it&#8217;s pretty stable AFAIK, but open an issue if you notice any bugs! I plan to keep it updated for future changes in the iOS SDK.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-96267</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 27 Mar 2012 23:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-96267</guid>
		<description>I am getting the same error. Anyone have any insight on what&#039;s wrong?</description>
		<content:encoded><![CDATA[<p>I am getting the same error. Anyone have any insight on what&#8217;s wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mamcx</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-96101</link>
		<dc:creator>mamcx</dc:creator>
		<pubDate>Mon, 26 Mar 2012 18:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-96101</guid>
		<description>What about setup this in github or bitbucket instead?</description>
		<content:encoded><![CDATA[<p>What about setup this in github or bitbucket instead?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rebecca</title>
		<link>http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-3/#comment-93859</link>
		<dc:creator>Rebecca</dc:creator>
		<pubDate>Sat, 10 Mar 2012 18:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://vocaro.com/trevor/blog/?p=516#comment-93859</guid>
		<description>I am getting a SIGBART error when I add this updated code.  Can you provide some guidance?

exception &#039;NSInvalidArgumentException&#039;, reason: &#039;-[UIImage resizedImage:transform:drawTransposed:interpolationQuality:]: unrecognized selector sent to instance</description>
		<content:encoded><![CDATA[<p>I am getting a SIGBART error when I add this updated code.  Can you provide some guidance?</p>
<p>exception &#8216;NSInvalidArgumentException&#8217;, reason: &#8216;-[UIImage resizedImage:transform:drawTransposed:interpolationQuality:]: unrecognized selector sent to instance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

