New Post: Issue with colorization using RGB values
Hi Dirk, Thanks for pointing me in the right direction. I was told to try this: convert background1_original.jpg \ ( -size 1x1 xc:black xc:"hsl(60,70%,50%)" xc:white +append -resize 512x1! ) \...
View ArticleNew Post: Using Magick.NET for making PNG background transparent
Hi Dirk, I implemented the above code and it works fine but there are some distortions when the original file contains text. I attached 2 examples each of them converted with convert.exe and with...
View ArticleNew Post: Issue with colorization using RGB values
I can translate this command but I don't get the correct result due to a bug in the OpenCL resize code. This will be resolved this weekend and then I will post both translated examples from the...
View ArticleNew Post: Issue with colorization using RGB values
Great - thank you for your kind attention. I'll be checking in this weekend :)
View ArticleNew Post: Using Magick.NET for making PNG background transparent
IM7 does most operations on all channels, including the alpha channel. You are probably using the IM6 version of convert.exe on the command line. Only leveling the RGB channels seems to produce a...
View ArticleNew Post: What happens with Copyopacity in version 7
I am using Magick.net to make some changes on user pictures. To Cut out a specific part of the picture I used composite with the compositoperator.Copyopacity it have been working perfectly. Then I...
View ArticleNew Post: What happens with Copyopacity in version 7
CopyOpacity has been renamed to CopyAlpha. Can you give that a try?
View ArticleNew Post: What happens with Copyopacity in version 7
Thanks for you quick reply. I tested CopyAlpha and it is not like copy opacity. CopyAlpha use the white color pixels of the auxilary image to select and cut out the pixels in user picture. I wrote a...
View ArticleNew Post: What happens with Copyopacity in version 7
As you can see test_DstOut is exactly what I need but if you zoom in you can see there is a gray, and ghostly border around the cut area. Is there any way to prevent that ?
View ArticleNew Post: What happens with Copyopacity in version 7
Can you also create a really simple class that I can use to reproduce your results with the pictures you provided? I would prefer it if you would put the source file together with your pictures. Then I...
View ArticleNew Post: What happens with Copyopacity in version 7
this is the class that I run to get all the results. please do not forget to change the path of the two file to your local drive class Class1{ public void ConvertPictures() { var cropImagePath =...
View ArticleNew Post: Using Magick.NET for making PNG background transparent
You are right, I have been using ImageMagick 6.8 for convert.exe. And lowering the blackPointPercentage parameter brought the desired result. Thanks a lot.
View ArticleNew Post: What happens with Copyopacity in version 7
If I understand you corectly you want to copy the alpha channel from one image to the other image. I have just published Magick.NET 7.0.2.600 that has a new overload in CopyPixels that allows you to...
View ArticleNew Post: Issue with colorization using RGB values
The new release has been published. Below is a translation of the two commands that you got on the ImageMagick forum:// convert background1_original.jpgusing (var image = new...
View ArticleNew Post: Issue with colorization using RGB values
Hi Dirk, The first solution works beautifully and is exactly what I was looking for. Thank you for your hard work and generosity.
View ArticleNew Post: Photoshop high pass filter
After updating to your latest version, I tried both, image.SetArtifact("convolve:bias", "50%"); and the new MorphologySettingsvar settings = new MorphologySettings(); settings.Kernel = Kernel.DoG;...
View ArticleNew Post: ResourceLimits.Thread
dlemstra wrote: The ResourceLimits.Thread property has been removed because I now statically link the Visual Studio C++ redistributable. I cannot enable OpenMP anymore and you don't need that property...
View ArticleNew Post: Photoshop high pass filter
Can you share your input image so I can try to reproduce your issue? Please use something like DropBox or OneDrive to share it.
View ArticleNew Post: Photoshop high pass filter
Hi, I tried several input images, including this one:https://www.dropbox.com/s/uj5w8sscn76rj1i/testimage.jpg?dl=0. All images result in a white output image. Kind regards Lemon
View ArticleNew Post: Magick.NET Core NuGet package using deprecated .NET Platform...
https://github.com/dotnet/corefx/blob/master/Documentation/architecture/net-platform-standard.md dotnet5.5 is deprecated.
View Article