New Post: Postscript delegate failed - No such file or directory @...
Well. It has to be with the parameters of Magick.net. Do you remember the post Magick net parameters? I followed your suggestion and I'have included this piece of code when I use Magick.Net: if...
View ArticleNew Post: Postscript delegate failed - No such file or directory @...
Can you check if it works if you do not call MagickNET.SetTempDirectory? I think setting the temp directory is causing the problem. Did you set it to a network share?
View ArticleNew Post: Check if filetype is supported
This library supports impressive number of file formats so I was wondering is there way to check if file is supported before opening. For example in a thumbnail viewer application what is be best way...
View ArticleNew Post: When I convert image with thereshold 80% I get a blank page
I'm using version 6.8.8.701 (Magick.NET-x86.dll from zip file) If I use convert from command line convert -thereshold 80% 1.jpg 2.jpg goes right. I'm trying the same using library but seems I'm missing...
View ArticleNew Post: Check if filetype is supported
You can use MagickNET.SupportedFormats to get a list of all supported formats. Or you could use the names of the MagickFormat enum to get all the supported extensions.
View ArticleNew Post: When I convert image with thereshold 80% I get a blank page
Another user has reported the same problem. I am planning to look into it this evening/weekend. I first have to fix another issue in ImageMagick.
View ArticleNew Post: Abort loading image
For a thumbnail browser I have a custom thumbnail control where each loads an image in different Task.Factory thread. Is there a way to stop Magick once it starts loading and working on...
View ArticleNew Post: Abort loading image
You should not abort a thread that is loading an image. This can cause problems with the unmanaged memory and temporary files that are being used by ImageMagick. You should probably just finish loading...
View ArticleNew Post: When I convert image with thereshold 80% I get a blank page
Thanks dlemstra, and sorry because I had not seen the other post about the same issue https://magick.codeplex.com/discussions/537971 Really we're doing exactly the same converting document to pdf with...
View ArticleNew Post: When I convert image with thereshold 80% I get a blank page
It will be fixed in the next version of Magick.NET that uses a percentage as the parameter. You will be able to do this:// convert -threshold 80% 1.jpg 2.jpgusing (MagickImage image = new...
View ArticleNew Post: Converting(any?) image to black and white
That link can be found on the bottom of the documentation page. I have made this more clear so it won't be that easy to miss it anymore. The problem with Threshold will be fixed in the next release of...
View ArticleNew Post: Abort loading image
OK thanks! I will then just check if filesize is too large and skip huge images.
View ArticleNew Post: Postscript delegate failed - No such file or directory @...
Hello there. I have checked it out and it works if I don not call de MagickNET.SetTempDirectory method. I'm moving to another project, so it willl de difficult to make further tests. Hope it helps....
View ArticleNew Post: Postscript delegate failed - No such file or directory @...
I made a fix to ImageMagick this weekend that should resolve the issue when you use a network share as a temporary directory. Feel free to try the next release if the other project also does not meet...
View ArticleNew Post: C# Conversion from CMYK to RGB .jpg
I can't seem to find any code snippet/example of converting a file from CMYK to RGB using C#.
View ArticleNew Post: C# Conversion from CMYK to RGB .jpg
You can find it on this page: https://magick.codeplex.com/wikipage?title=Convert%20image&referringTitle=Documentation
View ArticleNew Post: Color transformation with Fx
I am trying to do some colour transformations with Fx function, but is doesn't work. If I use this expression inside Fx function"rgb((1-u.r)*255,128,128)" the result is black image. The actual...
View ArticleNew Post: When I convert image with thereshold 80% I get a blank page
Thanks dlemstra Is any estimation date for next release, I've seen last version has been released 17 february. I observate from april 2013 you do a release each month, this is your release cycle ?
View ArticleNew Post: Converting 2 pages TIF Files to jpg
Hi, I am having an error when converting 2 pages TIF Files into a single file .jpg . What is the right approach for this? Here's the errorImageMagick.MagickCoderErrorException: Magick:...
View Article