views:

33

answers:

1

Hi all, I have no experience with imageMagick, it is a very powerfull library.

One question. How can i convert the command line example that uses command line "Convert" command to the iphone version ?

I mean, i do not know what command to use instead of convert command

Thanks to all

A: 

ImageMagick isn't installed by default on iPhones. It appears that someone has ported the project though: http://www.cloudgoessocial.net/2010/05/01/latest-imagemagick/

You'll probably need to use the Magick Wand C interface to talk to the library from your program.

Jordan Lewis
Yes, i installed the library.what i have to do is:# Reduces the number of colors in the filtered image# Converts the original image to grayscale# (Optionally) applies a median filter to the grayscale image# Applies a gradient edge detector to the grayscale image# Thresholds the edge image to binary# Composites the edge image with the color reduced imageCan you help
Giovanni
I'm not an ImageMagick expert; I recommend reading the Magick Wand documentation that I linked to.
Jordan Lewis
OK, thanks , I'll do it
Giovanni