New Post: Strange Artifacts in Caption CMYK Image
Hi, I'm getting strange artifacts inside caption on CMYK image, check this screenshot: . Heres the code:Imports ImageMagick public class PageClass Inherits System.Web.UI.Page sub Page_Load(Src as...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
Which version of Magick.NET are you using? I am getting the correct result on my machine with the latest version.
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
What happens when you use a Web Application Project instead of a Web Site? I haven't used the latter one in ages so I assumed you were using the csproj version. I'll try to see I can set up a web site...
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
After many installs and uninstalls, I finally noticed the "Magick.NET.net40-client.7.0.4.701" folder appear in %Temp% It has the "Magick.NET-Q8-x64.Native.dll" file in it (in addition to 12 other files...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
Hi dlemstra, I was using latest version Q8-x86, now I changed to Q16-x86 and all is good, no artifacts. Thanks for your help.
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
I also tried to test if I could reproduce your issue with the Q8 build but I am unable to do that. Are you sure you were not using an older version? Or does your code do more than the example that you...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
Yeah, I'm sure. This code is partially what I'm using, only difference is the remote image on Dropbox is not working, so I have to download the files and working on the server. I downloaded all x86...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
Ouch, Q16 is with these artifacts too. I'm not sure when this is happening, I'll keep testing.
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
Is it possible that you are sharing the same image in multiple threads? Can you create a solution with a project that I can use to reproduce this issue?
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
I'm not dealing with multiple threads. Yeah, sure, for what email I can send you a link? I'll prepare the test page.
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
It would be nice if you could reproduce this in a console application that I can run on my own machine. Or can you only reproduce this on your server?
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
I can only reproduce on the server, maybe I can get you a subdomain and a temporary FTP to make tests. Would help?
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
That would probably help but I don't know when I will have time to work on it. You can send me the info through CodePlex. The fact that it only fails with CMYK images looks like a strange bug but I...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
I think I came to a solution: convert the image to RGB and after to CMYK, hope this don't change anything when print. Based on docs I did this:'Convert do RGB image.AddProfile(ColorProfile.SRGB) 'Write...
View ArticleNew Post: Strange Artifacts in Caption CMYK Image
You are changing the colors when you convert from CMYK to RGB and back. I think it is failing because you are combining the channels of a 3 channel image with a 4 channel image. I still don't...
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
Will try to create a test project later this week and see if I can reproduce your issue.
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
I can reproduce your issue. It seems that the project does not want to create a link to the library. But I don't understand why this is happening. Will take another look at this again in a couple weeks.
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
Thanks for confirming the bug, Dirk.
View ArticleNew Post: The type or namespace name 'ImageMagick' could not be found
I don't think this is a bug in Magick.NET though. I think we will need to configure the website project in some way. Just not sure how we should do that.
View ArticleNew Post: How to improve the performance of Image conversion
It takes huge time to convert and resize the images. Approximately it takes around 48 seconds to convert 6 images. I have attached the code I use and the sample images with the project link...
View Article