<?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: Views of UIImagePickerController</title>
	<atom:link href="http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/</link>
	<description>Code and cogitation on BREW and all things mobile from the folks at Airsource.</description>
	<pubDate>Tue, 07 Sep 2010 16:36:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ben</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/#comment-1424</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 21 Mar 2010 13:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-1424</guid>
		<description>Sudha - you can just use UIGetScreenImage(). It was approved by Apple last November pending any future solution.</description>
		<content:encoded><![CDATA[<p>Sudha - you can just use UIGetScreenImage(). It was approved by Apple last November pending any future solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sudha</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/#comment-1420</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Tue, 16 Mar 2010 22:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-1420</guid>
		<description>Ben, did Alex or Rolando gave you some leads on this? could you share some info please?</description>
		<content:encoded><![CDATA[<p>Ben, did Alex or Rolando gave you some leads on this? could you share some info please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/#comment-896</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 06 Nov 2009 14:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-896</guid>
		<description>Has anyone figured out a solution to this trouble?  Rolando, if you have a legal way of doing this or anyone else that is reasonably fast I would be willing to pay for the solution.  The new 3.1 routines are too slow.  UIGetScreenImage() works fast enough for our usage and uses little memory but it is part of the private api.  email: delay at pobox dot com if anyone has any code they want to give away or sell that solves this trouble.</description>
		<content:encoded><![CDATA[<p>Has anyone figured out a solution to this trouble?  Rolando, if you have a legal way of doing this or anyone else that is reasonably fast I would be willing to pay for the solution.  The new 3.1 routines are too slow.  UIGetScreenImage() works fast enough for our usage and uses little memory but it is part of the private api.  email: delay at pobox dot com if anyone has any code they want to give away or sell that solves this trouble.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hypno_toad</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/#comment-886</link>
		<dc:creator>hypno_toad</dc:creator>
		<pubDate>Thu, 10 Sep 2009 19:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-886</guid>
		<description>Well the new 3.1 OS certainly makes it a lot nicer to change the UI for the UIImagePickerController

OverlayViewController *oController = [[OverlayViewController alloc] initWithNibName:@"OverlayView" bundle:nil];
oController.tabController = self;
self.overlayController = oController;
[oController release];
UIImagePickerController *uip = [[[UIImagePickerController alloc] init] autorelease];
uip.delegate = self;
uip.sourceType = UIImagePickerControllerSourceTypeCamera;
uip.showsCameraControls = NO;
uip.cameraOverlayView = overlayController.view;

Currently trying to use the takePicture method in a timer to feed a barcode reader.  takePicture seems to be taking a picture though it's a 2MP (3G iPhone for ref), I resize that to 320x480 and feed it to the barcode reader but then it won't recognize it.  For some reason UIGetScreenImage() works really well though.  I would like to stay away from using that, so any suggestions?</description>
		<content:encoded><![CDATA[<p>Well the new 3.1 OS certainly makes it a lot nicer to change the UI for the UIImagePickerController</p>
<p>OverlayViewController *oController = [[OverlayViewController alloc] initWithNibName:@&#8221;OverlayView&#8221; bundle:nil];<br />
oController.tabController = self;<br />
self.overlayController = oController;<br />
[oController release];<br />
UIImagePickerController *uip = [[[UIImagePickerController alloc] init] autorelease];<br />
uip.delegate = self;<br />
uip.sourceType = UIImagePickerControllerSourceTypeCamera;<br />
uip.showsCameraControls = NO;<br />
uip.cameraOverlayView = overlayController.view;</p>
<p>Currently trying to use the takePicture method in a timer to feed a barcode reader.  takePicture seems to be taking a picture though it&#8217;s a 2MP (3G iPhone for ref), I resize that to 320&#215;480 and feed it to the barcode reader but then it won&#8217;t recognize it.  For some reason UIGetScreenImage() works really well though.  I would like to stay away from using that, so any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EXcell</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/#comment-795</link>
		<dc:creator>EXcell</dc:creator>
		<pubDate>Tue, 07 Jul 2009 14:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-795</guid>
		<description>I was playing around with PLCameraController. After updates to 3.0 same source code doesnot work. Not yet figure out the issue. Any ideas?</description>
		<content:encoded><![CDATA[<p>I was playing around with PLCameraController. After updates to 3.0 same source code doesnot work. Not yet figure out the issue. Any ideas?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
