<?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: Python bindings for ImageMagick&#8217;s MagickWand API</title>
	<atom:link href="http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/feed" rel="self" type="application/rss+xml" />
	<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html</link>
	<description>Ian Stevens&#039; weblog</description>
	<lastBuildDate>Sat, 03 Mar 2012 07:14:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Akilae</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-342563</link>
		<dc:creator>Akilae</dc:creator>
		<pubDate>Wed, 20 Jul 2011 09:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-342563</guid>
		<description>It&#039;s seem to be some problems about windows dll loader.
I found some solution and it works for me.
Please refer to the following link:
http://hi.baidu.com/ledzep2/blog/item/6c5eff357ac5d081a61e12ce.html</description>
		<content:encoded><![CDATA[<p>It&#8217;s seem to be some problems about windows dll loader.<br />
I found some solution and it works for me.<br />
Please refer to the following link:<br />
<a href="http://hi.baidu.com/ledzep2/blog/item/6c5eff357ac5d081a61e12ce.html" rel="nofollow">http://hi.baidu.com/ledzep2/blog/item/6c5eff357ac5d081a61e12ce.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-160934</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Mon, 06 Dec 2010 12:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-160934</guid>
		<description>Hey, another Windows user here, if you&#039;re still there. I also got the import error, but when I tried to directly specify the library (wand_lib = &#039;C:\Program Files (x86)\ImageMagick-6.6.6-Q8\CORE_RL_wand_.dll&#039;), I get this error:

Traceback (most recent call last):
  File &quot;C:\Admin\Python\imagemagick.py&quot;, line 1, in 
    from pythonmagickwand.image import Image
  File &quot;build\bdist.win32\egg\pythonmagickwand\image.py&quot;, line 2, in 
    # The Python Imaging Library.
  File &quot;build\bdist.win32\egg\pythonmagickwand\api.py&quot;, line 663, in 
  File &quot;C:\Admin\Programs\Python27\lib\ctypes\__init__.py&quot;, line 366, in __ge
tattr__
    func = self.__getitem__(name)
  File &quot;C:\Stratton\Programs\Python27\lib\ctypes\__init__.py&quot;, line 371, in __ge
titem__
    func = self._FuncPtr((name_or_ordinal, self))
AttributeError: function &#039;AnimateImages&#039; not found</description>
		<content:encoded><![CDATA[<p>Hey, another Windows user here, if you&#8217;re still there. I also got the import error, but when I tried to directly specify the library (wand_lib = &#8216;C:\Program Files (x86)\ImageMagick-6.6.6-Q8\CORE_RL_wand_.dll&#8217;), I get this error:</p>
<p>Traceback (most recent call last):<br />
  File &#8220;C:\Admin\Python\imagemagick.py&#8221;, line 1, in<br />
    from pythonmagickwand.image import Image<br />
  File &#8220;build\bdist.win32\egg\pythonmagickwand\image.py&#8221;, line 2, in<br />
    # The Python Imaging Library.<br />
  File &#8220;build\bdist.win32\egg\pythonmagickwand\api.py&#8221;, line 663, in<br />
  File &#8220;C:\Admin\Programs\Python27\lib\ctypes\__init__.py&#8221;, line 366, in __ge<br />
tattr__<br />
    func = self.__getitem__(name)<br />
  File &#8220;C:\Stratton\Programs\Python27\lib\ctypes\__init__.py&#8221;, line 371, in __ge<br />
titem__<br />
    func = self._FuncPtr((name_or_ordinal, self))<br />
AttributeError: function &#8216;AnimateImages&#8217; not found</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Stevens</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-94598</link>
		<dc:creator>Ian Stevens</dc:creator>
		<pubDate>Wed, 20 Jan 2010 00:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-94598</guid>
		<description>Chris, are you still having issues? Sorry for the late reply. It looks like a Windows permissions error. Double-check that you have read and execute permissions on C:\Program Files\ImageMagick-6.5.8-Q16. If not, add them. I&#039;m not sure why that wouldn&#039;t already be the case, but stranger things have happened. Sorry, I don&#039;t have access to a Windows machine for testing.</description>
		<content:encoded><![CDATA[<p>Chris, are you still having issues? Sorry for the late reply. It looks like a Windows permissions error. Double-check that you have read and execute permissions on C:\Program Files\ImageMagick-6.5.8-Q16. If not, add them. I&#8217;m not sure why that wouldn&#8217;t already be the case, but stranger things have happened. Sorry, I don&#8217;t have access to a Windows machine for testing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-93776</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 06 Jan 2010 16:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-93776</guid>
		<description>I tried adding r&#039;C:\Program Files\ImageMagick-6.5.8-Q16&#039; to the line you mention, but now I get the error:

    from pythonmagickwand.image import Image
  File &quot;C:\Program Files\Python26\lib\site-packages\pythonmagickwand\image.py&quot;, line 2, in 
    from pythonmagickwand import api, wand, color
  File &quot;C:\Program Files\Python26\lib\site-packages\pythonmagickwand\api.py&quot;, line 23, in 
    _lib = CDLL(wand_lib)
  File &quot;C:\Program Files\Python26\lib\ctypes\__init__.py&quot;, line 353, in __init__
    self._handle = _dlopen(self._name, mode)
WindowsError: [Error 5] Access is denied</description>
		<content:encoded><![CDATA[<p>I tried adding r&#8217;C:\Program Files\ImageMagick-6.5.8-Q16&#8242; to the line you mention, but now I get the error:</p>
<p>    from pythonmagickwand.image import Image<br />
  File &#8220;C:\Program Files\Python26\lib\site-packages\pythonmagickwand\image.py&#8221;, line 2, in<br />
    from pythonmagickwand import api, wand, color<br />
  File &#8220;C:\Program Files\Python26\lib\site-packages\pythonmagickwand\api.py&#8221;, line 23, in<br />
    _lib = CDLL(wand_lib)<br />
  File &#8220;C:\Program Files\Python26\lib\ctypes\__init__.py&#8221;, line 353, in __init__<br />
    self._handle = _dlopen(self._name, mode)<br />
WindowsError: [Error 5] Access is denied</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Stevens</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-91526</link>
		<dc:creator>Ian Stevens</dc:creator>
		<pubDate>Sat, 28 Nov 2009 23:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-91526</guid>
		<description>Sorry, Frank, I think I completely missed that you were trying to install PythonMagickWand on Windows. Do you have ImageMagick installed? (See http://www.imagemagick.org/script/binary-releases.php#windows if you don&#039;t.) There might be some problems finding the location of the MagickWand library on Windows. My wrapper tries to intelligently locate the library, but it might not be smart enough for Windows. Actually, I&#039;m pretty sure it isn&#039;t. Do you know where the MagickWand library files are installed on Windows? You could try editing the pythonmagickwand/api.py at line 15 to include the path. If you get it working, please send me a patch. Sorry, I don&#039;t have easy access to a Windows machine to test this.</description>
		<content:encoded><![CDATA[<p>Sorry, Frank, I think I completely missed that you were trying to install PythonMagickWand on Windows. Do you have ImageMagick installed? (See <a href="http://www.imagemagick.org/script/binary-releases.php#windows" rel="nofollow">http://www.imagemagick.org/script/binary-releases.php#windows</a> if you don&#8217;t.) There might be some problems finding the location of the MagickWand library on Windows. My wrapper tries to intelligently locate the library, but it might not be smart enough for Windows. Actually, I&#8217;m pretty sure it isn&#8217;t. Do you know where the MagickWand library files are installed on Windows? You could try editing the pythonmagickwand/api.py at line 15 to include the path. If you get it working, please send me a patch. Sorry, I don&#8217;t have easy access to a Windows machine to test this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Borell</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-91381</link>
		<dc:creator>Frank Borell</dc:creator>
		<pubDate>Wed, 25 Nov 2009 19:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-91381</guid>
		<description>Ian,
I tried with Python 2.51, then reinstalled to 2.5.4. I ran easy_install from the subversion directory(missing in PATH) and it seemed to install. I did run the Image Magik win32 install just prior-(ver 6.5.8 Q16). I&#039;m able to import pythonmagickwand but not the .image class. Is the &quot;zip_safe flag not set&quot; affecting the process ?

Frank

&gt;&gt;&gt; import pythonmagickwand
&gt;&gt;&gt; dir(pythonmagickwand)
[&#039;__builtins__&#039;, &#039;__doc__&#039;, &#039;__file__&#039;, &#039;__loader__&#039;, &#039;__name__&#039;, &#039;__path__&#039;]


C:\Program Files\Subversion\bin&gt;c:\python25\scripts\easy_install.exe -d c:\pytho
n25\lib\site-packages http://svn2.assembla.com/svn/pythonmagickwand/trunk
Downloading http://svn2.assembla.com/svn/pythonmagickwand/trunk
Doing subversion checkout from http://svn2.assembla.com/svn/pythonmagickwand/tru
nk to c:\docume~1\admini~1\locals~1\temp\2\easy_install-nmdws-\trunk
Processing trunk
Running setup.py -q bdist_egg --dist-dir c:\docume~1\admini~1\locals~1\temp\2\ea
sy_install-nmdws-\trunk\egg-dist-tmp-z6jqnr
zip_safe flag not set; analyzing archive contents...
pythonmagickwand 0.1 is already the active version in easy-install.pth

Installed c:\python25\lib\site-packages\pythonmagickwand-0.1-py2.5.egg
Processing dependencies for pythonmagickwand==0.1
Finished processing dependencies for pythonmagickwand==0.1

C:\Program Files\Subversion\bin&gt;python
ActivePython 2.5.4.4 (ActiveState Software Inc.) based on
Python 2.5.4 (r254:67916, Apr 27 2009, 15:41:14) [MSC v.1310 32 bit (Intel)] on
win32
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; import pythonmagickwand
&gt;&gt;&gt; dir(pythonmagickwand)
[&#039;__builtins__&#039;, &#039;__doc__&#039;, &#039;__file__&#039;, &#039;__loader__&#039;, &#039;__name__&#039;, &#039;__path__&#039;]
&gt;&gt;&gt; from pythonmagickwand.image import Image
Traceback (most recent call last):
  File &quot;&quot;, line 1, in 
  File &quot;C:\Python25\lib\site-packages\PIL\image.py&quot;, line 2, in 
    # The Python Imaging Library.
  File &quot;build\bdist.win32\egg\pythonmagickwand\api.py&quot;, line 21, in 
ImportError: Cannot find ImageMagick MagickWand library.</description>
		<content:encoded><![CDATA[<p>Ian,<br />
I tried with Python 2.51, then reinstalled to 2.5.4. I ran easy_install from the subversion directory(missing in PATH) and it seemed to install. I did run the Image Magik win32 install just prior-(ver 6.5.8 Q16). I&#8217;m able to import pythonmagickwand but not the .image class. Is the &#8220;zip_safe flag not set&#8221; affecting the process ?</p>
<p>Frank</p>
<p>&gt;&gt;&gt; import pythonmagickwand<br />
&gt;&gt;&gt; dir(pythonmagickwand)<br />
['__builtins__', '__doc__', '__file__', '__loader__', '__name__', '__path__']</p>
<p>C:\Program Files\Subversion\bin&gt;c:\python25\scripts\easy_install.exe -d c:\pytho<br />
n25\lib\site-packages <a href="http://svn2.assembla.com/svn/pythonmagickwand/trunk" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/trunk</a><br />
Downloading <a href="http://svn2.assembla.com/svn/pythonmagickwand/trunk" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/trunk</a><br />
Doing subversion checkout from <a href="http://svn2.assembla.com/svn/pythonmagickwand/tru" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/tru</a><br />
nk to c:\docume~1\admini~1\locals~1\temp\2\easy_install-nmdws-\trunk<br />
Processing trunk<br />
Running setup.py -q bdist_egg &#8211;dist-dir c:\docume~1\admini~1\locals~1\temp\2\ea<br />
sy_install-nmdws-\trunk\egg-dist-tmp-z6jqnr<br />
zip_safe flag not set; analyzing archive contents&#8230;<br />
pythonmagickwand 0.1 is already the active version in easy-install.pth</p>
<p>Installed c:\python25\lib\site-packages\pythonmagickwand-0.1-py2.5.egg<br />
Processing dependencies for pythonmagickwand==0.1<br />
Finished processing dependencies for pythonmagickwand==0.1</p>
<p>C:\Program Files\Subversion\bin&gt;python<br />
ActivePython 2.5.4.4 (ActiveState Software Inc.) based on<br />
Python 2.5.4 (r254:67916, Apr 27 2009, 15:41:14) [MSC v.1310 32 bit (Intel)] on<br />
win32<br />
Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />
&gt;&gt;&gt; import pythonmagickwand<br />
&gt;&gt;&gt; dir(pythonmagickwand)<br />
['__builtins__', '__doc__', '__file__', '__loader__', '__name__', '__path__']<br />
&gt;&gt;&gt; from pythonmagickwand.image import Image<br />
Traceback (most recent call last):<br />
  File &#8220;&#8221;, line 1, in<br />
  File &#8220;C:\Python25\lib\site-packages\PIL\image.py&#8221;, line 2, in<br />
    # The Python Imaging Library.<br />
  File &#8220;build\bdist.win32\egg\pythonmagickwand\api.py&#8221;, line 21, in<br />
ImportError: Cannot find ImageMagick MagickWand library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Stevens</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-91356</link>
		<dc:creator>Ian Stevens</dc:creator>
		<pubDate>Wed, 25 Nov 2009 02:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-91356</guid>
		<description>Hi Frank. I haven&#039;t tested the library under Python 2.6, only 2.5. Try using it in Python 2.5.</description>
		<content:encoded><![CDATA[<p>Hi Frank. I haven&#8217;t tested the library under Python 2.6, only 2.5. Try using it in Python 2.5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Borell</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-91332</link>
		<dc:creator>Frank Borell</dc:creator>
		<pubDate>Tue, 24 Nov 2009 17:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-91332</guid>
		<description>Wondering if you could help my installation on windows. I&#039;m getting the _getstate_ error below when doing the dry-run or easy_install.exe  http://svn2.assembla.com/svn/pythonmagickwand/trunk.
Thanks in advance ...
Frank

C:\Python26\Scripts&gt;easy_install.exe --dry-run http://svn2.assembla.com/svn/pyth
onmagickwand/trunk
Downloading http://svn2.assembla.com/svn/pythonmagickwand/trunk
Doing subversion checkout from http://svn2.assembla.com/svn/pythonmagickwand/tru
nk to c:\docume~1\191203\locals~1\temp\easy_install-auwech\trunk
Processing trunk
Running setup.py -n -q bdist_egg --dist-dir c:\docume~1\191203\locals~1\temp\eas
y_install-auwech\trunk\egg-dist-tmp-ytmat2
Traceback (most recent call last):
  File &quot;C:\Python26\Scripts\easy_install-script.py&quot;, line 8, in 
    load_entry_point(&#039;setuptools==0.6c11&#039;, &#039;console_scripts&#039;, &#039;easy_install&#039;)()
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
1712, in main
    with_ei_usage(lambda:
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
1700, in with_ei_usage
    return f()
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
1716, in 
    distclass=DistributionWithoutHelpCommands, **kw
  File &quot;C:\Python26\lib\distutils\core.py&quot;, line 152, in setup
    dist.run_commands()
  File &quot;C:\Python26\lib\distutils\dist.py&quot;, line 975, in run_commands
    self.run_command(cmd)
  File &quot;C:\Python26\lib\distutils\dist.py&quot;, line 995, in run_command
    cmd_obj.run()
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
211, in run
    self.easy_install(spec, not self.no_deps)
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
422, in easy_install
    return self.install_item(None, download, tmpdir, deps, True)
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
476, in install_item
    dists = self.install_eggs(spec, download, tmpdir)
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
655, in install_eggs
    return self.build_and_install(setup_script, setup_base)
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
930, in build_and_install
    self.run_setup(setup_script, setup_base, args)
  File &quot;c:\python26\lib\site-packages\setuptools\command\easy_install.py&quot;, line
919, in run_setup
    run_setup(setup_script, args)
  File &quot;c:\python26\lib\site-packages\setuptools\sandbox.py&quot;, line 52, in run_se
tup
    pr_state = pkg_resources.__getstate__()
AttributeError: &#039;module&#039; object has no attribute &#039;__getstate__&#039;</description>
		<content:encoded><![CDATA[<p>Wondering if you could help my installation on windows. I&#8217;m getting the _getstate_ error below when doing the dry-run or easy_install.exe  <a href="http://svn2.assembla.com/svn/pythonmagickwand/trunk" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/trunk</a>.<br />
Thanks in advance &#8230;<br />
Frank</p>
<p>C:\Python26\Scripts&gt;easy_install.exe &#8211;dry-run <a href="http://svn2.assembla.com/svn/pyth" rel="nofollow">http://svn2.assembla.com/svn/pyth</a><br />
onmagickwand/trunk<br />
Downloading <a href="http://svn2.assembla.com/svn/pythonmagickwand/trunk" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/trunk</a><br />
Doing subversion checkout from <a href="http://svn2.assembla.com/svn/pythonmagickwand/tru" rel="nofollow">http://svn2.assembla.com/svn/pythonmagickwand/tru</a><br />
nk to c:\docume~1\191203\locals~1\temp\easy_install-auwech\trunk<br />
Processing trunk<br />
Running setup.py -n -q bdist_egg &#8211;dist-dir c:\docume~1\191203\locals~1\temp\eas<br />
y_install-auwech\trunk\egg-dist-tmp-ytmat2<br />
Traceback (most recent call last):<br />
  File &#8220;C:\Python26\Scripts\easy_install-script.py&#8221;, line 8, in<br />
    load_entry_point(&#8216;setuptools==0.6c11&#8242;, &#8216;console_scripts&#8217;, &#8216;easy_install&#8217;)()<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
1712, in main<br />
    with_ei_usage(lambda:<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
1700, in with_ei_usage<br />
    return f()<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
1716, in<br />
    distclass=DistributionWithoutHelpCommands, **kw<br />
  File &#8220;C:\Python26\lib\distutils\core.py&#8221;, line 152, in setup<br />
    dist.run_commands()<br />
  File &#8220;C:\Python26\lib\distutils\dist.py&#8221;, line 975, in run_commands<br />
    self.run_command(cmd)<br />
  File &#8220;C:\Python26\lib\distutils\dist.py&#8221;, line 995, in run_command<br />
    cmd_obj.run()<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
211, in run<br />
    self.easy_install(spec, not self.no_deps)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
422, in easy_install<br />
    return self.install_item(None, download, tmpdir, deps, True)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
476, in install_item<br />
    dists = self.install_eggs(spec, download, tmpdir)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
655, in install_eggs<br />
    return self.build_and_install(setup_script, setup_base)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
930, in build_and_install<br />
    self.run_setup(setup_script, setup_base, args)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\command\easy_install.py&#8221;, line<br />
919, in run_setup<br />
    run_setup(setup_script, args)<br />
  File &#8220;c:\python26\lib\site-packages\setuptools\sandbox.py&#8221;, line 52, in run_se<br />
tup<br />
    pr_state = pkg_resources.__getstate__()<br />
AttributeError: &#8216;module&#8217; object has no attribute &#8216;__getstate__&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin Schweizer. Python-MagickWand or How to Work With Icons.</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-82268</link>
		<dc:creator>Benjamin Schweizer. Python-MagickWand or How to Work With Icons.</dc:creator>
		<pubDate>Thu, 18 Jun 2009 07:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-82268</guid>
		<description>[...] see, Ian Stevens&#8216; CDLL bindings are a straight forward implementation of the MagickWand C API using the CDLL [...]</description>
		<content:encoded><![CDATA[<p>[...] see, Ian Stevens&#8216; CDLL bindings are a straight forward implementation of the MagickWand C API using the CDLL [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://crazedmonkey.com/blog/python/python-imagemagick-magickwand.html/comment-page-1#comment-62125</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 29 Sep 2008 07:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://crazedmonkey.com/blog/python/python-bindings-for-imagemagicks-magickwand-api.html#comment-62125</guid>
		<description>from pythonmagickwand.image import Image
from pythonmagickwand.color import BLUE
i = Image(&#039;test.jpg&#039;)
i.format = &#039;PNG&#039;
i.rotate(45, BLUE)
i.save(&#039;flip.png&#039;)

looks like it&#039;s renamed.</description>
		<content:encoded><![CDATA[<p>from pythonmagickwand.image import Image<br />
from pythonmagickwand.color import BLUE<br />
i = Image(&#8216;test.jpg&#8217;)<br />
i.format = &#8216;PNG&#8217;<br />
i.rotate(45, BLUE)<br />
i.save(&#8216;flip.png&#8217;)</p>
<p>looks like it&#8217;s renamed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

