Noobie's question

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
TheWho
Posts: 2
Joined: 2013-03-09T12:27:44-07:00
Authentication code: 6789

Noobie's question

Post 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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Noobie's question

Post 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.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply