New Post: Magick.Net Convert 10bit log dpx file to jpg
Can you share the image you are using? And a bit of sample code?
View ArticleNew Post: Resize filter parameters
Hi Magick.Net Filter Function group to use it for image resize was not found. I hope for the addition of the functions. thanks. example,http://www.dylanbeattie.net/magick/filters/result.html...
View ArticleNew Post: Resize filter parameters
You will be able to set the filter options when the following work item has been completed: https://magick.codeplex.com/workitem/1027. I will add a method called 'SetArtifact' to MagickImage.
View ArticleNew Post: Using MagickImage.AddProfile() with ColorProfiles and problems with...
I'm struggling to use MagickNet to colour-correct images. My wide-gamut monitor requires that images be colour-adjusted if they are not to display extremely exaggerated red hues. So, I have been...
View ArticleNew Post: Magick.Net Convert 10bit log dpx file to jpg
dlemstra wrote: Can you share the image you are using? And a bit of sample code?my code//this using magick.net public static FileInfo DPXConvertJPG(String ImagePath) { //check the dpx file //if dpx...
View ArticleNew Post: Applied ColorProfiles not having an effect on MagickImages
I am not an expert with color profiles but maybe you can get the same result if you first add the sRGB color profile (ColorProfile.SRGB) and then add your own. I have also tested the code you posted...
View ArticleNew Post: Applied ColorProfiles not having an effect on MagickImages
I had actually already tried manually setting an sRGB profile just as you suggested, but it made no difference. It seems to need to be embedded in the image file to begin with. To be clear, this is...
View ArticleNew Post: Magick.Net Convert 10bit log dpx file to jpg
I find out that command : convert.exe -colorspace log test.dpx -set colorspace sRGB test.jpg
View ArticleNew Post: Magick.Net Convert 10bit log dpx file to jpg
I am getting the correct result with the following code:using (MagickImage image = new MagickImage("161-020-03_A091.0003894.dpx")) { image.SetAttribute("colorspace", "sRGB"); image.Write("output.jpg"); }
View ArticleNew Post: How to define floating point format
In the image format listing on the ImageMagick website, the format GRAY says to use single precision floating point format use -define quantum:format=floating-point And in the Magick++ library Image...
View ArticleNew Post: Magick.Net Convert 10bit log dpx file to jpg
dlemstra wrote: I am getting the correct result with the following code:using (MagickImage image = new MagickImage("161-020-03_A091.0003894.dpx")) { image.SetAttribute("colorspace", "sRGB");...
View ArticleNew Post: How to define floating point format
Or do I have to cast them to UInt16 and then to a byte[] Can you specify them? Where are you trying to load your image from?
View ArticleNew Post: Converting mask to color
Hi, I am unsuccessfully trying to give color to a mask. From the ImageMagick documentation I found there are a few ways to do this. How can I achieve any of the following with Magick.NET? convert...
View ArticleNew Post: Converting mask to color
Yes. I'm basically trying to generate some of the jQuery UI icon images. The mask has a typical black background with the icons colored white, and I want to color the white icons blue let's say on a...
View ArticleNew Post: Converting mask to color
Can you post your image somewhere, so I can do some tests with it? I am now working on some changes for the next release and that includes adding the method LevelColors...
View ArticleNew Post: Converting mask to color
Sure. The image is:https://github.com/jquery/download.jqueryui.com/blob/master/template/themeroller/icon/mask.png Yes I read about the LevelColors method as well. I would be great if that were...
View ArticleNew Post: Converting mask to color
I will add both Alpha and LevelColors. After the next release that I will publish this weekend you will be able to do this:// Background purple, foreground yellow.using (MagickImage image = new...
View Article