ImageMagick Script iOS

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
riddler
Posts: 3
Joined: 2014-02-25T16:53:20-07:00
Authentication code: 6789

ImageMagick Script iOS

Post by riddler »

Is it possible for me to use an ImageMagick script while developing for iOS? I am interested in one of feeds scripts and am unsure how I would go about using it.
Thanks.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: ImageMagick Script iOS

Post by fmw42 »

I may be wrong and am not an expert on iOS, but I have been told that you cannot call a shell script in iOS. You would need to separate the IM commands from the script and make direct calls to those commands and write your own code to fill in the other shell computations. Which of my scripts are you trying to use?
riddler
Posts: 3
Joined: 2014-02-25T16:53:20-07:00
Authentication code: 6789

Re: ImageMagick Script iOS

Post by riddler »

The text cleaner script.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: ImageMagick Script iOS

Post by fmw42 »

Just use IM command -lat. That is the basis of my textcleaner script. iOS can call individual IM commands.

Otherwise, for commercial use, license the script and decompose it into separate IM commands and program the shell calculations in iOS.
Post Reply