New Post: Find subimage
Hi! How can i find subimage with C# api?. If i use image.Compare, "size differs" exception occurred. MI version 6.8 The source code is following:var currentWebpageScreenshot =...
View ArticleNew Post: Find subimage
At this moment it is not possible to do a sub-image comparison. I would have to create an overload that will allow you to specify the starting point to start the comparison from.
View ArticleNew Post: Find subimage
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: ImageMagick Script
There some way to execute/ translate ImageMAgkic script like http://www.fmwconcepts.com/imagemagick/pagecurl/index.php with magickNet ?
View ArticleNew Post: ImageMagick Script
Fred uses shell scripts to perform operations on images and this will allow you to use variables. MagickScript does not have support for variables yet, so the operations you can perform with...
View ArticleNew Post: XMP bag
Hello! This code for get the metadata from image:using (MagickImage image = new MagickImage(srcPath.jpg)) { image.Write(dstPath.xmp); // xmp } rise the exeption: Magick: no APP1 data is available...
View ArticleNew Post: XMP bag
What kind of metadata are you trying to extract? There are various methods in MagickImage to read metadata:using (MagickImage image = new MagickImage("srcPath.jpg")) { image.Get8BimProfile();...
View ArticleNew Post: XMP bag
Yes. I try get dimension, size, color space, width, height, credentials etc. It is necessary not just to read the metadata, but write a XMP file with them.
View ArticleNew Post: Does Magick.Net have methods for all convert command line...
Hi, I'm new to Magick.Net. Does Magick.Net have methods for all convert command line transformations? Can this following example be implemented with Magick.Net: convert ( xc:red xc:blue +append ) \ \(...
View ArticleNew Post: Does Magick.Net have methods for all convert command line...
I try to implement all features that are available from the command line. But not everything has been added yet. It seems that the interpolate setting is not available. I will create an issue to make...
View ArticleNew Post: Does Magick.Net have methods for all convert command line...
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Does Magick.Net have methods for all convert command line...
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: ImageMagick Script
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: XMP bag
Your image does not contain a xmp profile and that is why you receive the exception from ImageMagick.
View ArticleNew Post: XMP bag
Thank you! Is it possible to distinguish the absence of xmp profile in the image and runtime error program? In other words, the program should write the error message in the log at runtime error. And...
View ArticleNew Post: XMP bag
You can check if your image contains an xmp profile with the following code:if (image.GetProfile("xmp") == null) // do somethingThe number behind the error message is a line number.
View ArticleNew Post: How is Convert Resample implemented with Magick.NET
Convert Resample implemented with Magick.NET. Can someone help me with an example.
View ArticleNew Post: How is Convert Resample implemented with Magick.NET
Are you talking about this option: http://www.imagemagick.org/script/command-line-options.php#resample? This is missing from Magick.NET, I will add it before the next release.
View ArticleNew Post: How is Convert Resample implemented with Magick.NET
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Convert tiff from RGB to CMYK
I am trying to convert an image from RGB to CMYK. No matter what I do, I cannot save the image as a decent CMYK format. It either saves as pixelated CMYK, or as a very nice RGB. But I need it to go to...
View Article