Search found 3 matches

by Conno
2017-06-04T12:22:14-07:00
Forum: Magick.NET
Topic: Rounded corners in C#/Magick.NET
Replies: 3
Views: 11983

Re: Rounded corners in C#/Magick.NET

I solved the issue with a lot of trial and error, for anyone who wants to do the same thing in the future: image.Format = MagickFormat.Png; image.Alpha(AlphaOption.Set); MagickImage copy = image.Clone(); copy.Distort(DistortMethod.DePolar, 0); copy.VirtualPixelMethod = VirtualPixelMethod.HorizontalT...
by Conno
2017-06-04T01:19:02-07:00
Forum: Magick.NET
Topic: Rounded corners in C#/Magick.NET
Replies: 3
Views: 11983

Re: Rounded corners in C#/Magick.NET

Hi, apologies for neglecting to include that information. We're running on Windows Sever 2008 (soon to be 2016), .NET Framework 4.5.1, with the Magick.NET Library v7.0.4.701 - the problem is, I'm not sure which version of ImageMagick the .NET library is wrapping (I presume the latest version as of F...
by Conno
2017-06-03T15:38:05-07:00
Forum: Magick.NET
Topic: Rounded corners in C#/Magick.NET
Replies: 3
Views: 11983

Rounded corners in C#/Magick.NET

I've researched this quite extensively, but the Magick.NET documentation is lacking; and there aren't a great deal of examples around t'internet/stackoverflow. Could one of you wizards please assist in converting the following ImageMagick command to C#/.NET? I've tried, but can't seem to get anywher...