New Post: The C++ module failed to load while attempting to initialize the...
MagickImage has a constructor that accepts a Stream. You can obtain a stream with the help of the WebRequest class in .NET
View ArticleNew Post: ImageMagick 7.0 source code
Hello I need to build custom MagickNET libraries with some changes in ImageMagick(disable some warnings) for testing purpose. I've downloaded the source code of MagickNET. It uses compiled ImageMagick...
View ArticleNew Post: ImageMagick 7.0 source code
That is the correct location of our SVN repository. But there are already some scripts available to help you with this. You can checkout all the necessary files with the script...
View ArticleNew Post: Setting Font Style with Captions or Lables
The following will work in the next version of Magick.NET if the font supports bold/italic:using (MagickImage img = new MagickImage()) { img.FontPointsize = 50; img.FontStyle = FontStyleType.Italic;...
View ArticleNew Post: ImageMagick 7.0 source code
Thanks! I see that Tools\Scripts\BuildLibraries.ps1 builds the VisualStaticMTD solution. How can I build the Static Single-threaded runtimes (VisualStaticST) ? I don't see corresponding option at...
View ArticleNew Post: ImageMagick 7.0 source code
The VisualStaticST solution has been deprecated and you cannot statically link the runtime in a CLI/C++ project. I am guessing you want to disable OpenMP. You can do that with the /noOpenMP option.
View ArticleNew Post: Automatic change of RGB images to greyscale - in jpgs
Magick.NET 7.0.0.0017 has been release and includes an option to prevent this behavior. If you set the attribute "colorspace:auto-grayscale" to "false" the automatic conversion to grayscale won't...
View ArticleNew Post: Cropping image
Hello I wrote the function for cropping image but I believe that it is not optimal. How can I increase the performance of my code? Detailed task: function should to transform existing image(cannot...
View ArticleNew Post: ImageMagick 7.0 source code
dlemstra wrote: The VisualStaticST solution has been deprecated and you cannot statically link the runtime in a CLI/C++ project. I am guessing you want to disable OpenMP. You can do that with the...
View ArticleNew Post: Boy I looked for an hour before writing this.
I have written a 12,000 line 3D Shell designer for HPVs (Human Powered Vehicles). I used VS2010 because that's the last version that works with XNA (my rendering interface to DirectX) w/o kluges. Your...
View ArticleNew Post: Boy I looked for an hour before writing this.
Oops I meant to say your documentation DOES NOT say it supports VS2010. Sorry about that.
View ArticleNew Post: ImageMagick 7.0 source code
All quantum depths will be build. If you only need one specific build you could edit the method 'BuildDevelopment' and change the $config/$build that is being used. You can see the list of builds at...
View ArticleNew Post: Boy I looked for an hour before writing this.
Your error is not related to Magick.NET. You are trying to load an 64-bit assembly in a 32-bit application pool. You should take a look at your project settings.
View ArticleNew Post: ImageMagick 7.0 source code
It's clear. Is it correct syntax for build with disabled OpenMP(for all available configurations)?Start-Process .\configure.exe -ArgumentList "/smtd /noWizard /VS2012 /noOpenMP $options" -wait
View ArticleNew Post: ImageMagick 7.0 source code
That will work for all builds if you make the change at that point.
View ArticleNew Post: Cropping image
That might be a bug or a missing feature. I will take a look at it tonight when I am back home.
View ArticleNew Post: Boy I looked for an hour before writing this.
Thank you dlemstra, I would like to donate. It still does not work when I open the pdf (says an error) but I'll work on that. Probably some setting about resolution or something. At least it writes the...
View Article