That worked! Thanks! BTW, I compiled your code and discovered one error in the last Composite() call.
This line, yellow
2 Questions:
This line, yellow
canvas.Composite(yellow, new MagickGeometry(x, y, purple.Width, purple.Height), CompositeOperator.Over);
should be purplecanvas.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:
- Are there any plans to fully document ImageMagic.NET?
- What percentage of ImageMagic functionality is made available in ImageMagic.NET?