New Post: Does Magick.Net support "caption:" functionality?
Caption internally uses FontTypeMetrics to calculate the size so it is quite strange that this is causing such a huge performance problem. Can you provide me with a small example?
View ArticleNew Post: Extract Image Countour
Hello, I would like to ask you guys if I can use Magick.NET library to extract the clipping path of an image that was built using CorelDraw. In my scenario the image can be exported to any file format...
View ArticleNew Post: Extract Image Countour
I don't know if it is the best format but you could try using tiff images for this. With the ClipMask property you should be able to extract a mask based on your clipping path.
View ArticleNew Post: Any known issues with AMD processors? SEHException
We are using Magick.NET.dll version 6.8.5.4 in a .net 4.0 winforms app to do some image conversion. For the most part this is working fine. Occasionally we get a user with this error:...
View ArticleNew Post: Extract Image Countour
Thank you for the reply, Well, I created a sample code to load a sample .tif image, and I got a MagickBlobErrorException, with the following additional information: unable to open image...
View ArticleNew Post: Extract Image Countour
Are you sure you are using the correct path to your image? And can you add a link to your file?
View ArticleNew Post: Any known issues with AMD processors? SEHException
I am not aware of an issue with AMD processors. Can you upgrade your version of Magick.NET to the latest version and see if the problem still occurs? There have been a lot of fixes and improvements...
View ArticleNew Post: Extract Image Countour
Hello dlemstra, If I use a wrong file path, than I get an ArgumentException with the "Unable to find file" details. You can find the sample file here: http://sdrv.ms/1fzmr9U I forgot to mention that I...
View ArticleNew Post: Extract Image Countour
I can open the file without any problems, does your path include any special characters? ImageMagick cannot find a clipping path in your image. Are you sure you posted the correct image?
View ArticleNew Post: Extract Image Countour
One problem is solved. The file was in my local drive, but it was under skydrive folder (I think your library did not like it very much). So I moved it to another folder and image could be read...
View ArticleNew Post: Any known issues with AMD processors? SEHException
Thank you for the quick response! I will update to the latest version and try to deploy on a problem machine as soon as I can. I will report back here after that happens.
View ArticleNew Post: Extract Image Countour
The skydrive folder problem might be a bug in ImageMagick, I will look into this. You will have to add the clipping path yourself. ImageMagick has no support for detecting a clipping path. It used to...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
I have done some more debugging and found that raising the FontPointSize with 0.1 was causing the performance hit. I've changed it to 1 and now Draw is actually faster. I did see another thing with...
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
There is a multi line FontTypeMetrics method available in ImageMagick and that is actual being used by the caption coder. I did not notice that before. I will make this available in the next release.
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Loading eps file with tiff preview only loads preview
Opening an eps file with an embedded tiff preview appears to be opening the preview tiff image and not the actual file. ImageMagick.MagickImage img = new ImageMagick.MagickImage("test.eps"); returns an...
View ArticleNew Post: Loading eps file with tiff preview only loads preview
Can you add a link to your image? Feel free to contact me through CodePlex if you don't want to publicly share your image.
View ArticleNew Post: Loading eps file with tiff preview only loads preview
I sent you a link to the file. I upgraded my version of ImageMagick from 6.5.3 to 6.8.8 and now convert.exe does the same thing. The verbose output is: EPT 898x988=>212x233 212x233+0+0 8-bit sRGB...
View ArticleNew Post: Magick.NET performance
Hi, I'm evaluating Magick.NET to see if we can replace our current image manipulation tool, and I've noticed that Magick.NET seems to have poorer performance than our current tool. In one situation we...
View ArticleNew Post: Create Animated Gif with images of different dimensions
I'm building an animated gif using images of different dimensions. Example of code I'm using for each image added to the collection is belowimg = New MagickImage(stream) Dim geom As MagickGeometry =...
View Article