New Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
Hello, I am using C# code to interpret the difference of images generated by an IP camera and I am looking for help with changes between Magick.Net v6.8.9.601-Q8-AnyCPU and v7.0.0.0008-Q8-AnyCPU. I am...
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Did my suggestion to switch to x86 and copying the dll files in your bin directory not work?
View ArticleNew Post: JPEG 2000 Encoder very slow in multithread setup
My J2K encoder uses openjpeg 1.5.1, i will test the new version when its available. Thanks.
View ArticleNew Post: JPEG 2000 Encoder very slow in multithread setup
I could get you a development build if you are interested. Contact me through Codeplex so I get your e-mail. Can you also specify the build you need? X86/x64/any and q8/q16.
View ArticleNew Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
This might be a bug in IM7. Can you make sure I can download your files without a Google+ account? Can you also i clude a small code sample that I can use to reproduce the issue?
View ArticleNew Post: Improper JPEG sampling factors
With Magick.Net I'm getting this error opening an image. Improper JPEG sampling factors 2,2\nApparently should be 1,1.. `JPEGPreDecode' @ error/tiff.c/TIFFErrors/581" System.Exception...
View ArticleNew Post: Improper JPEG sampling factors
Does Windows image viewer open the image? If it does then I can probably only try to fix this by patching libtiff. Not sure how easy that will be. And if GIMP can still open the image then this might...
View ArticleNew Post: Improper JPEG sampling factors
Windows image viewer does NOT open it. I have not found any viewer that opens it other than Photoshop.
View ArticleNew Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
Thank you for responding! I made the image files public and you should be able to download them, but I cannot upload code to an image hosting site -- could you suggest an alternate file hosting site...
View ArticleNew Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
Here is the code (v6 is identical with the exception of Metric.AbsoluteError): static void Main(string[] args) { double dblHits; using (MagickImage objMI_A = new MagickImage("D:\\A.jpg")) { using...
View ArticleNew Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
You can share files anonymous with Dropbox. I can confirm this is a bug in ImageMagick 7. I will get back to you when I know more.
View ArticleNew Post: Improper JPEG sampling factors
I was able to get the following image: https://www.dropbox.com/s/8mo3yldgiogksmz/E3_p1_1.png?dl=0. But this was done by making a change to the libtiff. I just mailed one of the libtiff maintainers to...
View ArticleNew Post: Implement a resize for animated gif.
Thanks for the code it helped me a lot. I'm having one problem though, the code works most of the time, but some animated gifs (check the link below for an example) doesnt resize properly using this...
View ArticleNew Post: Magick.Net 7.0.0.0008-Q8-AnyCPU Compare Difference Image
It turns out that due to the design changes in ImageMagick 7 you will get a different value. I have fixed the creation of the difference image in our svn repository. You will get almost the same image...
View ArticleNew Post: Implement a resize for animated gif.
You will get better results if you use the code below. Normally a frame has optimizations that causes it to contain only the changes to the previous image. The call to Coalesce will remove the...
View ArticleNew Post: Implement a resize for animated gif.
Your welcome. I will also add this script to the examples.
View ArticleNew Post: Convert command to .NET
This convert command should render a pencil sketch from the source image. convert source.jpg -clone 0 -modulate 100,0,100 -clone 1 -negate -blur 0x4 -clone 1 -clone 2 -compose color_dodge -composite...
View ArticleNew Post: Convert command to .NET
Below is an how your command can be translated to Magick.NET. This is not the most efficient way to do this but it should help you to translate commands in the future. I have added a comment with the...
View Article