[plt-scheme] image manipulation library?

From: Eli Barzilay (eli at barzilay.org)
Date: Thu Jan 19 09:19:51 EST 2006

On Jan 19, Jens Axel Søgaard wrote:
> Eli Barzilay wrote:
> > On Jan 19, Rohan Nicholls wrote:
> > 
> >>[...]  I can always call out image magick through the shell (I guess
> >>I could use the ffi to use the library directly, but time is limited
> >>and I have other things to learn before the ffi).
> > 
> > 
> > There is a pretty complete foreign interface to ImageMagick in
> > (lib "magick.ss" "ffi") that works with ImageMagick v6.0.1.  You can
> > also look at .../plt/collects/ffi/examples/magick.ss for some
> > examples.
> > 
> > I see that the current version is 6.2.5, it probably needs some work
> > if that's what you have installed.
> 
> Does it work in Windows? If so I just *have* to dig up a
> binary for 6.0.1.

It looks for "libWand", version 6.0.1.  On Windows, you may get lucky
if you put the libWand DLL in the system directory, and I'm not sure
if it will find it if you call it "libWand.dll" rather than
"libWand.6.0.1.dll".  Searching for DLLs on Windows and OSX is another
thorny issue...

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                  http://www.barzilay.org/                 Maze is Life!


Posted on the users mailing list.