----------------------------------------------------
+  ImageMagick bindings for konoha
+  version 0.1
+  kindofbrown (c) 2009
+  kindofbrown@users.sourceforge.net
----------------------------------------------------

1. What is this?
 Simple binding of ImageMagick-6.5.1 API, MagickWand.
 Now we bind about half of ImageMagick APIs.

2. How to install?
 Compile imagemagick with makefile.

  > make -f linux_32.mk

 Suppose there are installed ImageMagick and 
MagickWand API. Compilation needs -lWand, -lMagick 
options. Thus, Magick-config program is needed. 
After compilation, konoha will search imagemagick lib
from below directories

  ~/.konoha/imagemagick
  ./.konoha/imagemagick

 Please place imagemagick_linux_32.so at there.

3. How to Use?
 just type;

   >>> using imagemagick.*

 and goes on like this... 

   >>> ImageMagick magick = new ImageMagick()
   >>> magick.readImage("xxx.png")
   >>> magick.flipImage()
   >>> magick.writeImage("ooo.png")

 As wand package is a simple binding of MagickWand API,
you would have no trouble with it. ;)
ImageMagick MagickWand API references is below, or small
description is in imagemagick.k as comments.

http://www.imagemagick.org/script/perl-magick.php

4. Bugs
 report is always welcome.

 kindofbrown@users.sourceforge.jp

 
