New Post: Composite.Blur working
You can do the following for now if this is urgent for you: mImageblur.SetArtifact("compose:args", "3");
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
Has anyone has any success deploying Magick.Net and Ghostscript to an Azure site?
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
Have you tried my solution?
View ArticleNew Post: No such file or directory @ error/pdf.c/ReadPDFImage/713
Hi dlemstra! I have tried this: I have created one application which has two parameters, one for the .pdf file and the other one for the .png file. This application is being running under the same...
View ArticleNew Post: Best approach to create PDF -> PNG thumbnails on an Azure Web Site?
We have some other issues to address before we can make the switch to Azure, so we've implemented the above solution locally but we haven't actually tested it on Azure yet.
View ArticleNew Post: Png to Thumbnail
“img.ToByteArray()”引发了“ImageMagick.MagickCoderWarningException”类型的异常base: {"Magick: Not recognizing known sRGB profile that has been edited `' @ warning/png.c/MagickPNGWarningHandler/1832"}
View ArticleNew Post: Png to Thumbnail
What is your question? Can you add a link to the image that is raising this exception? And are you using the latest version of Magick.NET?
View ArticleNew Post: Get distance between colors
Hello, Is there any way to compare two colors and get the distance between them? similar to the command of imagemagick:compare -metric RMSE xc:Navy xc:blue null: The return value is: 18844.1 (0.287543)...
View ArticleNew Post: Get distance between colors
CompareTo only compares the Width*Height of both images. This is what you are looking for:using (MagickImage navy = new MagickImage("xc:navy")) { using (MagickImage blue = new MagickImage("xc:blue")) {...
View ArticleNew Post: PDF to PNG conversion quite slow
I am using Magick.NET in a multi-threaded WPF application to convert PDFs to PNGs in batches of thousands. The application gets all the documents from a database and then the threads take out the...
View ArticleNew Post: PDF to PNG conversion running slow
You are probably hitting a memory limit. When your application cannot get enough memory it will switch to disk cache. You should see an increase in disk IO at that point. Are you using the Q8 version...
View ArticleNew Post: PDF to PNG conversion running slow
I am using the latest x86 Q16 version of Magick.NET. I didnot pay attention towards the disk IO but I did see my memory and the maximum it reached was around 4.5GB so I still had around 3GB left. I...
View ArticleNew Post: PDF to PNG conversion running slow
An x86 process can only use 2 GB (http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx). So you might still be hitting that limit. Did you also install the x86 version of...
View ArticleNew Post: PDF to PNG conversion running slow
Good point. I will try converting it to a 64 bit application and report back the result. Thanks a lot.
View ArticleNew Post: PDF to PNG conversion running slow
I can't make it to run on more than one thread. It gives me an error saying: Magick: FailedToExecuteCommand `"C:/Program Files/gs/gs9.14/bin/gswin64c.exe" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE...
View ArticleNew Post: PDF to PNG conversion running slow
It looks like the 64 bit version of the library is not build with 'GS_THREADSAFE' which allows more then one instance when the library is used. It will switch to the command line version then. There is...
View ArticleNew Post: How can I set memory option defaultly?
Hi, Magick.NET is a very useful project. I am beginning to test some cases now. So I have a question to ask. Hope someone can make tips here. When I run convert command to process image file, it only...
View ArticleNew Post: How can I set memory option defaultly?
Which version of Magick.NET are you using? What 'memory option' is ignored? What are the dimensions (width x height) of your 150 MB JPEG file?
View ArticleNew Post: How can I set memory option defaultly?
Hi, Thanks your reply. I just downloaded the source code from codeplex and compiled it two days ago, I think the version is the newest Magick.NET 6.8.9.101. The referenced dll is Magick.NET-x86.dll. In...
View Article