New Post: Create a multi layer (PSD) file
Thank you, you saved me, I was able to create the layers. I missed this information. Now I hope I can create named group layers. Do you know if there is a document with the actual psd properties...
View ArticleNew Post: Create a multi layer (PSD) file
At this moment it is not possible to create named group layers. The only PSD property that is supported is the name of the layer. You can use the Label property of a MagickImage to set that. I am...
View ArticleNew Post: Get Only Diff
Hi dlemstra, Thanks again for the earlier help, I would like to know if I had done this right or not. The below code which is done through command prompt is done this way.compare.exe -metric AE -fuzz...
View ArticleNew Post: Get Only Diff
Your translation is correct but you will only need to set the color fuzz on image1.
View ArticleNew Post: Trying to clip a raster
I'm trying to create a set of image tiles from a single, large raster. It seems like a simple enough task but I can't work out the correct commands to use for clipping. I can see the clip command for...
View ArticleNew Post: Trying to clip a raster
I managed to work it out. Here's how I did it if anyone is interested: Dim inImage As MagickImage = New MagickImage(inImagePath) Dim outImage As MagickImage = New MagickImage(Color.White, 1000, 1000)...
View ArticleNew Post: Is it possible to use Magick.NET with Xamarin on OS X?
To check out whether it is possible, I followed one example and tried to open an image and display its height and width. Therefore I created a simple Xamarin project on my Mac, added the sample code...
View ArticleNew Post: Is it possible to use Magick.NET with Xamarin on OS X?
I have created a .NET Core version of Magick.NET but at the moment only the Windows platform is supported. I will add support for other platforms later this year.
View ArticleNew Post: Is it possible to use Magick.NET with Xamarin on OS X?
Hello dlemstra, thank you very much for your response. Can you give me more details especially about the when? Furthermore is it possible to build a Mac version by my own by just compiling Magick.NET...
View ArticleNew Post: Is it possible to use Magick.NET with Xamarin on OS X?
I am now not even sure if I will ever get Magick.NET working on OSX. I did some reading and it turns out that I will need to buy a Mac to get this working. I don't think that will happen anytime soon....
View ArticleNew Post: Photoshop high pass filter
Hi, I try to rebuild a Photoshop high pass filter using ImageMagick convolve. From the ImageMagick documentation, I got the following: convert face.png -bias 50% -morphology Convolve DoG:0,0,2...
View ArticleNew Post: Photoshop high pass filter
You will need to set the artifact 'convolve:bias'. That is what is being done on the command line.image.SetArtifact("convolve:bias", "50%"); I should probably also make this available in code a bit...
View ArticleNew Post: Photoshop high pass filter
The new class has been added and will be available in the next release: https://magick.codeplex.com/SourceControl/changeset/b0d6cb45c73b34a6959b6ab308e3a1f5998d1d28
View ArticleNew Post: ImageMagick Security Issue
arthg wrote: I see there is an upgrade to Magick.NET 7.0.1.101 and associated NuGet package to resolve the security issue. Are you planning to release a build and package that fixes version 6? We are...
View ArticleNew Post: ImageMagick Security Issue
All you need to do is upgrade to the latest version. The policy.xml file is included as an embedded resource and already contains the correct settings to prevent the exploit...
View ArticleNew Post: Limit image formats on Magick.net
As per the link below, ImageMagick supports a huge number of file formats.http://www.imagemagick.org/script/formats.php This could be a potential attack vector when servers allow visitors to upload any...
View Article