New Post: Write Blob error on .ai to .png conversion
I cannot reproduce this with my development build. Can you test it again after I have published the new release?
View ArticleNew Post: Crop/Trim White space around an image
Thank you very much! This works great! But I have a question on setting ColorFuzz. What does this actually do? How does the percentage setting work? As I have to deal with lot of images, I just want to...
View ArticleNew Post: Crop/Trim White space around an image
You can find a good explanation in the documentation for ImageMagick here: http://www.imagemagick.org/Usage/color_basics/#fuzz
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
What you should do with your input images is change the black color to transparent. You can do this with the Opaque method. Below is an example.using (MagickImageCollection images = new...
View ArticleNew Post: Write Blob error on .ai to .png conversion
Excellent. Thanks. I'll be on the lookout for it.
View ArticleNew Post: Rotate Broken since 7.0.0.0008
Hi, it looks like Rotate was broken in 7.0.0.0008, and is still broken in 7.0.0.0010. I have sample images if it helps. Not sure how to attach here.
View ArticleNew Post: Rotate Broken since 7.0.0.0008
I have replied to your e-mail. Lets get back to this topic after we have resolved this issue.
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
Ok, i am getting closer this code was a nice help. I come to this point currentlyhttp://i.imgur.com/Gyjs3G4.gif Now the only thing i want is to actualy get rid of the animation but i dont think this is...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
You want to create an animated gif that does not animate?
View ArticleNew Post: Crop/Trim White space around an image
Thank you! This is very interesting :) I would also like to find whether an image has borders around it or not. Is that possible? Thank you!
View ArticleNew Post: Crop/Trim White space around an image
It really depends on what you consider a border. If you can define what you consider a border then you could probably detect it with some code. This won't be easy if what you consider a border...
View ArticleNew Post: System.AccessViolationException when comparing two images
dlemstra, I removed the guards and installed the latest Magick.Net package using NuGet (verified update). I am no longer getting the AccessViolationException on MagickImage.Compare(MagickImage), but I...
View ArticleNew Post: System.AccessViolationException when comparing two images
Now that is embarrassing. I could not reproduce the access violation from code so I checked the methods that where called. I thought I checked your method but it seems I missed a couple. It has to do...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
I try to explain it again. This is the input picture http://i.imgur.com/UQdIpTM.png , if i convert this picture directly into a gif i get this http://i.imgur.com/eL7PvWD.gif , because a gif can only...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
Thanks for the explanation, I am now getting what you are trying to accomplish. An answer to your first question is that you can set the number of animation iterations with the AnimationIterations...
View ArticleNew Post: Is it possible to create tiled GIF images with Magick.NET?
Hm, only MagickImage has the AnimationIterations property right? I am setting it like this but it doesnt seem to workusing (MagickImageCollection collection = new MagickImageCollection()) { for (int a...
View Article