New Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
I realize you can't use the TransformColorSpace method until you know the source profile. I don't know how to find that out in my image. So I am sending you a link to the TIF image. Can you please tell...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
Does your problem only occur on a Mac or also on other operating systems? The image looks fine under Windows. Have you tried to removing the line image.RemoveProfile("8BIM"); ? The 8bim profile should...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
Yes. The only time the user experiences the desaturation issue is in Google Chrome or Firefox on their MacBook Pro only. Safari displays fine. I will remove the .RemoveProfile("8BIM") as you recommend...
View ArticleNew Post: Converting a image using command line options
hello I'm new to magick.net ,is there any way can run this com command using magick.net"convert a.jpg -modulate 100,100,100 b.jpg" i'm using Magick.NET-7.0.3.1-Q8-x86 Zip verison
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
Hey Dirk, Removing the .RemoveProfile("8BIM") did not help. Did you get a chance to look at the difference in color between Chrome/FF and Safari on a Mac? Also compare the saturation of the image to...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
I don't own a Mac so I cannot test it on there. Maybe you should share an output image on the ImageMagick form and ask Fred Weinhaus for help. You already started a topic there.
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
OK, I will do that. Thank you.
View ArticleNew Post: Converting a image using command line options
Most options are methods of the MagickImage class. Your example would translate to this:using (MagickImage image = new MagickImage("a.jpg")) { image.Modulate((Percentage) 100, (Percentage) 100,...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
Hi Dirk, I did not get a favorable response from the other forum. What I just need to do, is convert the aforementioned TIF to JPG, sRGB, 96 dpi, 640 height. Can you send me the code snippet that will...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
I'll try to take a look at it on Friday when I have a day of. Not sure yet how to test this though but the answer from Snibgo in...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
Hi Dirk, Not to worry. I found the solution. It's really simple. Just call RemoveProfile("icc"). This removes the ICC profile tag only. That way, Chrome and Firefox will assume the operating system's...
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
I also suspected that this was the solution but thanks for trying that yourself. And thanks for coming back to this topic with the solution :)
View ArticleNew Post: Missing documentation
I am tryng do call OutputImage.Morphology(MorphologyMethod.Close, Kernel.UserDefined, "0,1,1,0") but i dont know the string sintax of third parameter .Somebody can help me ? thanks
View ArticleNew Post: Missing documentation
You can find a lot of information about Morphology here: http://www.imagemagick.org/Usage/morphology/
View ArticleNew Post: Convert From TIF to JPG - Colors Washed Out In Chrome and Firefox...
If I can help the next person with the same problem, I am happy. :)
View ArticleNew Post: Missing documentation
Indeed I used "1x4:0,1,1,0" as seen on link ,but Morphology method throw execption "unable to parse kernel" . So I think that or is a bug in string parser or the syntax is different . Thanks
View ArticleNew Post: Still can't get resize/resample to work with any consistency
My customer has this rule: No matter what size or DPI image a user uploads, make it 300 DPI. The resulting dimensions must be 2.13 x 2.5. I must keep the aspect ratio. I fill in 'white' color where I...
View ArticleNew Post: Still can't get resize/resample to work with any consistency
Do I understand you correctly that you want your image to have 300 DPI and always be 2.13inch x 2.5inch?
View ArticleNew Post: Still can't get resize/resample to work with any consistency
Correct. Seems simple enough. But I cannot make that work. Also, the image must maintain aspect ratio, and fill in white. So for example, if the resulting image is 2 x 2, we must center it within a...
View ArticleNew Post: Still can't get resize/resample to work with any consistency
Two samples to test with attached.
View Article