New Post: Issue with MagickImage.Negate()
Yup. The OpenCL negate method has been removed. The CPU could always perform this action faster. You can safely enable OpenCL in the next release.
View ArticleNew Post: Issue with MagickImage.Negate()
dlemstra wrote: Yup. The OpenCL negate method has been removed. The CPU could always perform this action faster. You can safely enable OpenCL in the next release. OK, great! I will wait for the new...
View ArticleNew Post: Question about composite command and images of different sizes
Yes, I was using the x64 version of 7.0.0.0001. I've switched to the x86 version and it's working as intended. I'll redownload the x64 version and try it again.
View ArticleNew Post: QuantumOperator not a member of MagickImage
Using image As New MagickImage("input.png") image.Alpha(AlphaOption.[Set]) ' If your image does not contain an alpha channel. image.QuantumOperator(Channels.Alpha, EvaluateOperator.[Set], Quantum.Max...
View ArticleNew Post: QuantumOperator not a member of MagickImage
The QuantumOperator method has been renamed to Evaluate in February.
View ArticleNew Post: PHASH
How do I use PHASH with this library? I've looked through the public properties and methods of MagickImage and MagickImageInfo to find the PHASH that is available in the ImageMagick library. Is there...
View ArticleNew Post: PHASH
Not sure what you are trying to accomplish but are you looking for ErrorMetric.PerceptualHash? You can use this as one of the parameters of the Compare method.
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
I'm viewing it in Photoshop, yes. You mean that I should store it like this?Layer: composite of img1 and img2Layer: img1Layer: img2
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Hi! I would like to use Magick.NET without installing the "Visual C++ Redistributable for Visual Studio 2012 Update 4" exe. I don't want to be dependent our production environments, which are managed...
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
I don't think it is possible to use Magick.NET without installing the "Visual C++ Redistributable for Visual Studio". You could try to copy the following files to the bin directory of your application:...
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
Correct. But if you don't need the composite image you could also try to include a 'single color' layer to reduce the size of the file. I have not tried this.
View ArticleNew Post: C# Replacing a transparent background with White
Hi, I am trying to read an image file (which might be PNG, JPG,, or GIF) and, if it has a transparent background change the background to White, then resize it and writing it out as a GIF file while...
View ArticleNew Post: C# Replacing a transparent background with White
Setting the background color does not change it. If you want to change the transparent pixels to a solid color you should do the following: MagickImage img = new MagickImage(source);...
View ArticleNew Post: PHASH
Ok, tried that - it is extremely slow and what result am I aiming for? Normally a good result is 75% or better. It could be sped up if I could store the PHash in the database for each image. Any idea...
View ArticleNew Post: Magick.net implementation on AnyCPU project 64 bit machine
I am using the Magick.net library in an mvc3 web application and these are steps i did 1.My project is targetting AnyCPU and my machine is 63 bit Add reference of Magick.NET-x64.dll to the project....
View ArticleNew Post: Magick.net implementation on AnyCPU project 64 bit machine
Your project should target x64 instead of AnyCPU if you use the 64 bit version of Magick.NET. The message 'An attempt was made to load a program with an incorrect format. ' means that you are mixing 32...
View ArticleNew Post: Unshaprmask working?
dlemstra wrote: The default parameters for amount and threshold are 1.0 and 0.05. I will add an overload that only needs two parameters the next release. You can compare the images with the Compare...
View ArticleNew Post: Unshaprmask working?
Can you upgrade to 7.0.0.0002 and see if the problem still occurs?
View ArticleNew Post: Unshaprmask working?
dlemstra wrote: Can you upgrade to 7.0.0.0002 and see if the problem still occurs? yes, it doesn't work on it as well, i tried it. Both versions after 6.8.9.601 have the issue
View Article