Search found 245 matches

by rmagick
2009-09-09T14:57:42-07:00
Forum: Users
Topic: New installation complete but Old version still the default
Replies: 5
Views: 12346

Re: New installation complete but Old version still the default

If you installed the new version using the default PREFIX, then it's in /usr/local/bin. I don't know where yum installs things. Probably /usr. Anyway, find out the directory in which the old ImageMagick is installed, and then make sure that /usr/local/bin precedes that directory in your PATH. If you...
by rmagick
2009-08-27T15:46:15-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

Re: fill-opacity different from SVG

I see DrawSetOpacity in 6.5.5-5 and now I have a question. I'm confused about the difference between opacity and fill-opacity so I looked at magick/draw.c. I see that opacity changes the fill opacity as well as the stroke opacity and fill-opacity changes only the fill opacity. However it appears tha...
by rmagick
2009-08-26T15:35:56-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

Re: fill-opacity different from SVG

We're both right. I guess your test uses the opacity primitive. Since I'm using the MagickWand API, my test uses fill-opacity . The fill-opacity primitive does not produce the desired result. Here are two versions of the same test. This was created using the DrawSetFillOpacity in the MagickWand API:...
by rmagick
2009-08-25T15:26:38-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

Re: fill-opacity different from SVG

Should I be seeing the fix in 6.5.5-2? My test still demonstrates the problem.
by rmagick
2009-08-20T16:49:42-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

Re: fill-opacity different from SVG

Thanks!
by rmagick
2009-08-20T15:51:05-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

Re: fill-opacity different from SVG

Apparently I was not clear about the difference I am questioning. In the ImageMagick output the pair of red & green circles 2nd from the left on the bottom row look like they're entirely opaque, but in the SVG example they are .5 opaque. Per your advice I downloaded the SVG example and converted...
by rmagick
2009-08-16T15:42:06-07:00
Forum: MagickWand
Topic: fill-opacity different from SVG
Replies: 10
Views: 36047

fill-opacity different from SVG

http://www.w3.org/TR/SVG11/images/masking/opacity01.png I'm trying to reproduce this example from the SVG spec ( http://www.w3.org/TR/SVG11/masking.html ) but I see a discrepency. Notice the 2nd pair of circles from the left on the bottom. I believe this MVG script is the equivalent of the SVG: pus...
by rmagick
2009-08-09T13:36:23-07:00
Forum: MagickWand
Topic: DrawSkewY oddity in 6.5.4-0
Replies: 5
Views: 20379

Re: DrawSkewY oddity in 6.5.4-0

Thanks for both fixes!
by rmagick
2009-08-09T12:39:14-07:00
Forum: MagickWand
Topic: DrawSkewY oddity in 6.5.4-0
Replies: 5
Views: 20379

Re: DrawSkewY oddity in 6.5.4-0

Here's a simplified version of the skew y problem. Notice that the Y-axis is skewed 60 degrees instead of 30. /* * gcc `MagickWand-config --cflags --cppflags` -o skewybug skewybug.c `MagickWand-config --ldflags --libs` */ #include <stdio.h> #include <stdlib.h> #include <wand/MagickWand.h> int main(i...
by rmagick
2009-08-09T12:20:02-07:00
Forum: MagickWand
Topic: Omitted elliptical arc commands not working
Replies: 3
Views: 15348

Re: Omitted elliptical arc commands not working

Sure thing. Here you go. Please let me know if you need anything else. /* * gcc `MagickWand-config --cflags --cppflags` -o arcbug arcbug.c `MagickWand-config --ldflags --libs` */ #include <stdio.h> #include <stdlib.h> #include <wand/MagickWand.h> int main(int argc, char **argv) { MagickWand *wand; D...
by rmagick
2009-08-07T16:05:55-07:00
Forum: MagickWand
Topic: Omitted elliptical arc commands not working
Replies: 3
Views: 15348

Omitted elliptical arc commands not working

This is ImageMagick 6.5.4-8 on Ubuntu. I'm trying to reproduce this SVG example ( http://www.w3.org/TR/SVG11/painting.html#FillProperties ) using MagickWand http://www.w3.org/TR/SVG11/images/painting/fillrule-nonzero.png Using the MagickWand drawing API I created this MVG file: push graphic-context ...
by rmagick
2009-07-31T16:05:53-07:00
Forum: MagickWand
Topic: How do I set the border color for FillToBorderMethod?
Replies: 2
Views: 11390

How do I set the border color for FillToBorderMethod?

How do I set the border color to be used with DrawColor and the FillToBorderMethod? In MagickCore I'd just set the border_color member in the DrawInfo structure.
by rmagick
2009-07-23T16:08:53-07:00
Forum: Users
Topic: Uninstalling
Replies: 8
Views: 43006

Re: Uninstalling

You're welcome!
by rmagick
2009-07-22T15:57:52-07:00
Forum: Users
Topic: Uninstalling
Replies: 8
Views: 43006

Re: Uninstalling

Download and unroll the ImageMagick tarball. Change to the ImageMagick-6.5.4-3 (or whatever the version is) directory and run the configure script using the same options you used when you installed it. Then run

Code: Select all

sudo make uninstall
.