Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: Precisely placing multiple overlapping images

$
0
0
That worked! Thanks! BTW, I compiled your code and discovered one error in the last Composite() call.

This line, yellow
canvas.Composite(yellow, new MagickGeometry(x, y, purple.Width, purple.Height), CompositeOperator.Over);
should be purple
canvas.Composite(purple, new MagickGeometry(x, y, purple.Width, purple.Height), CompositeOperator.Over);
FYI, the hardest part about using ImageMagick is the lack of documentation. When I search Google for MagickGeometry Composite site:magick.codeplex.com, the only pages that mention it are under the Discussion section. I've relied mainly on code samples in the Discussion section, the Visual Studio Object Browser and Visual Studio Intellisense, to figure things out.

2 Questions:
  1. Are there any plans to fully document ImageMagic.NET?
  2. What percentage of ImageMagic functionality is made available in ImageMagic.NET?

Viewing all articles
Browse latest Browse all 3693

Trending Articles