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

New Post: Detecting clipping paths in JPG

$
0
0
I need to check if a JPG image has a clipping path or not. I have used the Interop.ImageMagick.dll earlier and then we used something like this:
MagickImage img = new MagickImage();

IList<object> parameters = new List<object>();
parameters.Add(@"-format");
parameters.Add(@"%[8BIM:2999,2999:#1]");
parameters.Add(sourceFilePath);

string clipPathInfo = img.Identify(parameters.ToArray()).ToString();
Is there a way to do this in in Magick.NET?

Viewing all articles
Browse latest Browse all 3693

Trending Articles