New Post: Adjust image intensity & apply blue tint to an image
Can you make the first image available as a separate download?
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
I have uploaded 3 seperate images on dropbox folder @ https://www.dropbox.com/sh/5ibv54wywa0128p/AADjBrd7yWe52bPu_CkfAOgLa?dl=0. Please let me know in case more information require. Thanks in advance.
View ArticleNew Post: Appends frame throws System.AccessViolationException
The problem has been found and will be fixed in the next release of Magick.NET.
View ArticleNew Post: Convert TIFF to transparent PNG
I am new to Magick.NET. How do you convert a TIFF image to a transparent PNG? Here's what I have so far.using (magickImage = new MagickImage(@"c:\input.tif")) { magicImage.Write(@"c:\output.png"); }
View ArticleNew Post: Convert TIFF to transparent PNG
Does your original tif image contain transpareny?
View ArticleNew Post: Convert TIFF to transparent PNG
Then why do you want to add transparency? Do you want to change a specific color to transparent? You can do that with the Opaque method of MagickImage.
View ArticleNew Post: Convert TIFF to transparent PNG
The transparency is needed for publishing purposes. I want to change "white" to transparent. Do you have an example using the Opaque method?
View ArticleNew Post: Reduce size of PNG with minimal quality loss
Hello I'm trying to reduce the size of PNG image using following code:using (var bitmap = new MagickImage("test.png")) { bitmap.Resize(800, 600); bitmap.Quality = 100; bitmap.Format = MagickFormat.Png;...
View ArticleNew Post: Reduce size of PNG with minimal quality loss
Two questions(in addition to question above): 1 How can I convert image to sRGB color profile? Is this code correct?bitmap.AddProfile(ColorProfile.SRGB); 2 How can I determine which color profile used...
View ArticleNew Post: Reduce size of PNG with minimal quality loss
You might want to try and disable MagickNET.OpenCL, that is the only thing that could affect the Quality. You will probably get a better result without it. And the Quality property for PNG does not...
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Hello dlemstra, Have you got the chance to look into my problem? Please share your findings. I am relying on your help now. Thanks in advance.
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
I haven't had time to look at this yet. I don't have a math background so I am not sure how to read this:Bg = (B/255)γ, where we use γ = 2.2 What happens when the value is 128? 128 / 255 ???? 2.2
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Hello dlemstra, Can't we achieve on looking into output image shared with you. I agree we can't do mathematical calculations but if you look into summary then first we need to extract Blue channel...
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
We can do mathematical calculations but I don't understand what Bg = (B/255)γ means. How would you write that in C#?
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
Hello dlemstra, We can ignore this mathematical calculations and refer images shared and try to replicate through Magick methods.
View ArticleNew Post: Adjust image intensity & apply blue tint to an image
The problem is that I don't know how to translate them because I don't know what they mean.Bg = (B/255)γ, where we use γ = 2.2 What is the value of Bg when B is 128?
View ArticleNew Post: Performing Mathematical Operations On An image
Hi I have a requirement to implement below logic written in IDL (Interactive Data Language) to Magick.Net. I think this can only be achieved by using the Fx method but I am not sure how to use the...
View Article