Search found 4 matches

by harry.whitehouse
2016-06-14T21:14:34-07:00
Forum: Users
Topic: MagicWand ImageComposite Question
Replies: 4
Views: 3551

Re: MagicWand ImageComposite Question

That was it Shibgo!!! Here's a few of the lines modified as per your instructions. I also tried resizing and repositioning which both worked well! MagickReadImage(mw2,"logo:"); int w2 = MagickGetImageWidth(mw2); int h2 = MagickGetImageHeight(mw2); printf("Image 2 file name is %s\n&quo...
by harry.whitehouse
2016-06-14T17:08:34-07:00
Forum: Users
Topic: MagicWand ImageComposite Question
Replies: 4
Views: 3551

Re: MagicWand ImageComposite Question

Thank you Shibgo!! You helped me get back on track! I've modified my code to call the Magick version of composite. I have one wand with a hand drawn image with a white background and a single diagonal line. I have a second wand where I read in the IM logo (the wizard!). You'll note that I tried both...
by harry.whitehouse
2016-06-13T16:52:57-07:00
Forum: Users
Topic: MagicWand ImageComposite Question
Replies: 4
Views: 3551

MagicWand ImageComposite Question

I have what should be a simple mission to draw B&W labels. I've been successful drawing lines and annotating with text using the API. Now I'd like to drop one or more arbitrary images on my canvas and the ImageComposite() call is throwing exceptions like this: ComposeImage: MagickCore/composite....
by harry.whitehouse
2016-06-10T11:19:09-07:00
Forum: Developers
Topic: Assistance with using ImageMagick with MinGW
Replies: 13
Views: 20275

Re: Assistance with using ImageMagick with MinGW

This thread was very helpful to me but some things have changed with time...

Here's the link statement that works with version 7:

gcc -Wall -fPIC -o "wand" "wand.c" -I /usr/include/ImageMagick/ -L /usr/local/lib -lMagickCore-7.Q16HDRI -lMagickWand-7.Q16HDRI