New Post: Resize(int width, int height) and Grayscale effect
Can you post your image on something like dropbox? Imgur might modify the image.
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Thanks a lot.. Here's the image, i've placed the original file on server.. http://54.254.176.246:8080/manager/images/1.jpg
View ArticleNew Post: PCL to PNG Conversion error
Just checked back, pulled down the latest nuget package and this all seems to be working great! PCL=>PNG conversion functioning fantastically. I'm running into a different issue now, but I'll submit...
View ArticleNew Post: System.AccessViolationException when combining two images
I am using the Q16-x64 nuget package. I am trying to overlay one image on top of another image. (I am printing out checks and need to take the check detail and be able to print it over top of a few...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
I cannot reproduce the problem with your image. Can you try saving the image before you 'return' it? Maybe you are doing something in between that is causing this behavior?using (MagickImage image =...
View ArticleNew Post: System.AccessViolationException when combining two images
I cannot reproduce the access violation with your code. It might be related to the crash inside the 'EnableOpenCL' method. Can you post the InnerException of the TypeInitializationException?
View ArticleNew Post: System.AccessViolationException when combining two images
You bet. Internal Exception is:"External component has thrown an exception." Stack Trace: at Magick.EnableOpenCL(Boolean ) at ImageMagick.MagickNET.SetUseOpenCL(Boolean value) at...
View ArticleNew Post: System.AccessViolationException when combining two images
Your problem might be related to this issue: https://magick.codeplex.com/discussions/542550. Do you have the same '13-12_mobility_win7_win8_64_dd_ccc_whql' driver? Can you get me a crashdump...
View ArticleNew Post: System.AccessViolationException when combining two images
I do not have that driver. (I have an nvidia video card) I'll send you a link to the dump file via CodePlex. Thanks!
View ArticleNew Post: System.AccessViolationException when combining two images
After reading through the other discussion, I noted your suggestion to turn on "native code debugging" to get a better dump file. (I'll send you that dump file in a sec). When I did that, I now receive...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Well it might be my version problem then, I'll see what's wrong or at the end I can still replace this resize method with C# natively provided function. So it's not a really big issue here.. Glad to...
View ArticleNew Post: EPS to PNG conversion - Different than ImageMagick CLI
Hi, I am using Magick.NET 6.0.0.0 to convert eps files to png format. There is difference in converted image and image that is generated using ImageMagick CLI. I am doing following operations on...
View ArticleNew Post: EPS to PNG conversion - Different than ImageMagick CLI
You are reporting a incorrect version. Magick.NET 6.0.0.0 is the 'link version' that has been the same since the first release. You can get the version with 'MagickNET.Version'. What is your command...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Is the file 'C:\test.jpg' all black? And can you try disabling OpenCL? MagickNET.UseOpenCL = false;
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Uh.. it worked! =D Er..I don't really get what documentation says, its some kind of accelerator? Is latency the only downside after disabling this? Latency is not a problem as I'd display loading...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
OpenCL uses your video card to perform certain operations faster but looking at the rest of your post I am not sure if this solved it. Can you post a link to an image you created with ToBitmap? I am...
View ArticleNew Post: EPS to PNG conversion - Different than ImageMagick CLI
Actually I am not able to trace download link for release, so I mentioned Assembly version, assembly file version is "6.8.5.4". API I am using has MagickNET.Version property. I should have mentioned...
View ArticleNew Post: Performing Barrel Correction using magick.net
Hi..I'm trying to use imageMagick's barrel distort correction (http://imagemagick.org/Usage/lens/) through the magick.net interface in my c# code,but unable to..could anybody please help me out?
View ArticleNew Post: EPS to PNG conversion - Different than ImageMagick CLI
I would recommend you to upgrade to the latest version of Magick.NET. Your command translates to this:using (MagickImage image = new MagickImage()) { MagickReadSettings settings = new...
View ArticleNew Post: Performing Barrel Correction using magick.net
Thank you for posting your message here. An issue should only be created when there is a bug or something new should be added. Doing a barrel distort is already possible in Magick.NET. Below is the C#...
View Article