Page 1 of 1

Noobie's question

Posted: 2013-03-09T12:56:11-07:00
by TheWho
Hello,
I was trying to use MagickCore for some image processing, but I'm stuck. Is there any example code for using MagickCore API? For example, is there a code that implements 'identify' function with 'verbose' option?
Thanks

Re: Noobie's question

Posted: 2013-03-17T21:58:43-07:00
by anthony
Examples of some API methods, is given in the IMv7 sources in the sub-directory "api_examples"

basically this command line...

Code: Select all

  magick -size 100x100 xc:red \
        \( rose: -rotate -90 \) \
        +append   show:
is encoded in many different ways.


Unfortunately we currently do not have examples using: Core, PerlMagick, PHP, imagick (PHP), Ruby, and probably many others.

Contributions welcome.