New Post: Magick.NET Core NuGet package using deprecated .NET Platform...
I switched to netstandard1.3 at version 7.0.1.500. Are you using an older version?
View ArticleNew Post: ResourceLimits.Thread
You can still use Magick.NET in a multithreaded environment. The only difference is that you won't be able to use OpenMP that allows mulithreaded operations on a single image. If you are using...
View ArticleNew Post: Photoshop high pass filter
You will also need to set the method in the settings class. I did not include that in my example: settings.Method = MorphologyMethod.Convolve;
View ArticleNew Post: Creating MagickImage with Width Only and Using Caption to Size...
How do you use Magick.NET to produce the same results as this command line? I can't seem to reproduce this using the wrapper:magick convert -size 980x -font Arial -pointsize 54 -background transparent...
View ArticleNew Post: Using FontTypeMetrics While Wrapping Text Possible?
Is there a way to measure the height that is produced from a string with the specified font, pointsize, and font-weight with word wrapping enabled? Right now, I get a width of 6000px and a height of...
View ArticleNew Post: Creating MagickImage with Width Only and Using Caption to Size...
It is probably the easiest to use the MagickReadSettings class for this. Your command would translate to this:using (MagickImage image = new MagickImage()) { MagickReadSettings readSettings = new...
View ArticleNew Post: Using FontTypeMetrics While Wrapping Text Possible?
It is currently not possible to get the FontTypeMetrics with word wrapping enabled. I might be able to add this by looking at the source code of caption. I will get back to this topic when I know more.
View ArticleNew Post: Cancel image writing
Hello, Thanks for your awesome work on this library. I have a question/request, is it possible to cancel the write of an image (with some WriteAsync and Cancel function for example) ?
View ArticleNew Post: LevelColors
Hi, I'm using Magick.NET-Q8-AnyCPU Nuget. Thank you for this great tool ! I need the exact result provided by "convert.exe cow.gif +level-colors red, cow_red.gif" ImageMagick V6 command line, but i...
View ArticleNew Post: LevelColors
Somebody just asked me the same question yesterday. I hope this is not some homework assignment :) You can find my response here: https://magick.codeplex.com/workitem/1404.
View ArticleNew Post: Cancel image writing
There is no Async version of the write method but you can still cancel it. The MagickImage class has a Progress event that will tell you the progress of operations on the image. If you set Cancel of...
View ArticleNew Post: LevelColors
Thank you and apologize for not having seen your previous answer. It works fine of course :)
View ArticleNew Post: LevelColors
No need to apologize. I just noticed that it was exactly the same question within a couple of days.
View ArticleNew Post: .Net Core
Howdy, I was curious what sort of work would be required to get this port to build on Linux using .Net Core. I didn't see any platform specific code that would require the use of windows. What would be...
View ArticleNew Post: .Net Core
The platform specific calls are inside the Native folder (https://github.com/dlemstra/Magick.NET/tree/master/Magick.NET/Core/Native). I use P/Invoke to call the code of the Magick.NET.Native library....
View ArticleNew Post: Magick.NET Core NuGet package using deprecated .NET Platform...
Yep! You're right, of course! I was using 7.0.0.102... which is the first version proposed by VS Code autocompletion in project.json... guess I was high last week when I did that... :P
View ArticleNew Post: Sample Resize Operation Not Maintaining Aspect
Using an original image with the dimensions of 2480 x 3508, if sample resizing is used specifying a new width and height of 400 x 400, the image is resized to 400 x 400 when it should maintain its...
View ArticleNew Post: Sample Resize Operation Not Maintaining Aspect
And which version of Magick.NET are you using?
View ArticleNew Post: Choose which GPU is used for OpenCL
Investigated a bit more in detail. In previous versions (7.0.0.x), the Native.dll file was locked. The latest version (7.0.2.600) does not have this problem. :)
View Article