<?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: ImageMagick on iPhone &#8211; update with TIFF</title>
	<atom:link href="http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/</link>
	<description>computer, travel, movies, music, cuisine and more</description>
	<lastBuildDate>Thu, 02 Feb 2012 09:40:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Cloud</title>
		<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/comment-page-1/#comment-1231</link>
		<dc:creator>Cloud</dc:creator>
		<pubDate>Thu, 26 Aug 2010 21:54:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.cloudgoessocial.net/?p=212#comment-1231</guid>
		<description>Please look at the downloadable sample project to apply an effect to an image. As for different effects you should scan the API documented over at http://www.imagemagick.org/api/MagickWand/index.html</description>
		<content:encoded><![CDATA[<p>Please look at the downloadable sample project to apply an effect to an image. As for different effects you should scan the API documented over at <a href="http://www.imagemagick.org/api/MagickWand/index.html" rel="nofollow">http://www.imagemagick.org/api/MagickWand/index.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hardik rathore</title>
		<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/comment-page-1/#comment-1230</link>
		<dc:creator>hardik rathore</dc:creator>
		<pubDate>Mon, 23 Aug 2010 05:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.cloudgoessocial.net/?p=212#comment-1230</guid>
		<description>Hey
I was just playing around with image processing stuff 

i need to implement the following functions :
Tint
Blur
Contrast
Brightness
GreyScale
Sharpness


I found many funtions in effects file

but problem is im getting no wat to call the function properly and get an result image to be shown in UIImageView.image

my C is intermediate so :D going through large chunk of header files is making me feel blue 

please help :(

regards
Hardik</description>
		<content:encoded><![CDATA[<p>Hey<br />
I was just playing around with image processing stuff </p>
<p>i need to implement the following functions :<br />
Tint<br />
Blur<br />
Contrast<br />
Brightness<br />
GreyScale<br />
Sharpness</p>
<p>I found many funtions in effects file</p>
<p>but problem is im getting no wat to call the function properly and get an result image to be shown in UIImageView.image</p>
<p>my C is intermediate so :D going through large chunk of header files is making me feel blue </p>
<p>please help :(</p>
<p>regards<br />
Hardik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/comment-page-1/#comment-115</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Tue, 11 Aug 2009 17:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cloudgoessocial.net/?p=212#comment-115</guid>
		<description>Hey, thanks for the good work.

I am trying to figure out how to use magickwand to create an animated gif from a sequence of images. I have been unable to find documentation on how to do this. Could you give me a nudge in the right direction?</description>
		<content:encoded><![CDATA[<p>Hey, thanks for the good work.</p>
<p>I am trying to figure out how to use magickwand to create an animated gif from a sequence of images. I have been unable to find documentation on how to do this. Could you give me a nudge in the right direction?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cloud</title>
		<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/comment-page-1/#comment-87</link>
		<dc:creator>Cloud</dc:creator>
		<pubDate>Wed, 29 Jul 2009 12:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.cloudgoessocial.net/?p=212#comment-87</guid>
		<description>If you just want to change the bpp of an image I guess you should use the MagickSetImageDepth() method of MagickWand.

In particular:
MagickSetImageDepth(MagickWand *wand, const unsigned long depth);

I tested it and before tiffinfo (use it to check your tiffs) reported:

&lt;blockquote&gt;
Image Width: 320 Image Length: 460
Resolution: 72, 72 pixels/inch
Bits/Sample: 16
&lt;/blockquote&gt;

After using the above function:
&lt;blockquote&gt;
Image Width: 320 Image Length: 460
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
&lt;/blockquote&gt;

Let me know if this was what you were looking for. Also remember that for using images in Tesseract I think it&#039;s better if they are grayscaled. Just a thought.

ciop ciop</description>
		<content:encoded><![CDATA[<p>If you just want to change the bpp of an image I guess you should use the MagickSetImageDepth() method of MagickWand.</p>
<p>In particular:<br />
MagickSetImageDepth(MagickWand *wand, const unsigned long depth);</p>
<p>I tested it and before tiffinfo (use it to check your tiffs) reported:</p>
<blockquote><p>
Image Width: 320 Image Length: 460<br />
Resolution: 72, 72 pixels/inch<br />
Bits/Sample: 16
</p></blockquote>
<p>After using the above function:</p>
<blockquote><p>
Image Width: 320 Image Length: 460<br />
Resolution: 72, 72 pixels/inch<br />
Bits/Sample: 8
</p></blockquote>
<p>Let me know if this was what you were looking for. Also remember that for using images in Tesseract I think it&#8217;s better if they are grayscaled. Just a thought.</p>
<p>ciop ciop</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sachin</title>
		<link>http://www.cloudgoessocial.net/2009/07/28/imagemagick-on-iphone-update-with-tiff/comment-page-1/#comment-86</link>
		<dc:creator>sachin</dc:creator>
		<pubDate>Wed, 29 Jul 2009 04:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.cloudgoessocial.net/?p=212#comment-86</guid>
		<description>I am using the image we get using UIPickerViewController which is one we get when we select from photo album and processing it like you said . The size of image is 320x320 and its 64bpp . how can i manipulate this using imagemagick to het a larger image say 640x640 and 1x1 pixel or 4x4 . 
or is ther another workaround?</description>
		<content:encoded><![CDATA[<p>I am using the image we get using UIPickerViewController which is one we get when we select from photo album and processing it like you said . The size of image is 320&#215;320 and its 64bpp . how can i manipulate this using imagemagick to het a larger image say 640&#215;640 and 1&#215;1 pixel or 4&#215;4 .<br />
or is ther another workaround?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

