Newbie questions

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
paul_r_jacobs

Newbie questions

Post by paul_r_jacobs »

I have been working MagickCore because I generally like to get closest to an API that I can. But the lack of samples is daunting. Does MagickWand expose everything in ImageMagick? Is there a source for samples for MagickCore?

Thanks,

Paul
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Newbie questions

Post by anthony »

Probably the best sourec of using MagickCore examples is
the individual operator definations in the Commandline API.


For example look at the source file "wand/mogrify.c"
and search for "case OptimizeLayer:" about line 8304

this performs multiple performs multiple individual operations to try an optimize the size of a GIF animation sequence. The results of each call is checked as it goes though the requires steps.

I am sure however there are better examples somewhere, but this is what I have dealt with! in MagickCore stuff.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: Newbie questions

Post by el_supremo »

I think MagickWand exposes essentially everything available in MagickCore. If it doesn't, posting a message here will usually prompt "magick" to add whatever is missing in the next point release.
MagickWand is easier to use than MagickCore. I have a webpage with some examples of MagickWand - see my signature.

Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
Post Reply