New Post: DPI
Hi How do I change the DPI for an existing image? I want to set it to 96. I guess this is the Density property on the image but I've not been able to get it to work as required yet. Thanks Russell
View ArticleNew Post: Getting pixel color
I have been trying to get color of a pixel, and have used the examples found in the forum. But it seems like using the methods is not giving the right result for the alpha channel. The files i am...
View ArticleNew Post: Getting pixel color
What value where you expecting? 0 means no transparency and 255 means full transparency. More information can be found here: http://www.imagemagick.org/Usage/color_basics/#color_semitrans.
View ArticleNew Post: Getting pixel color
I have implemented the inversion this way: alpha = 255 - pixel.GetChannel(3); and it works perfect now :-) Is there a way to identify what each channel is reprecenting Red/Green/Blue/Alpha/Cyan and so on?
View ArticleNew Post: Memory leak when appending *.tif files
I want to combine 2 *.tif files into 1 side by side image so I made it like this:private void button1_Click(object sender, EventArgs e) { using (MagickImageCollection images = new...
View ArticleNew Post: Getting pixel color
I did some research and the value is correct for ImageMagick 6. It seems that the inversion will happen in ImageMagick 7. I will keep it this way for now. You can identify each channel by the Format of...
View ArticleNew Post: assembly reference not sticking
I'm digging the embedded assemblies. I'm having a compilation problem though now in an ASP.NET web site project. Do you think I need to convert to a web project? When I reference the assembly (x64),...
View ArticleNew Post: Memory leak when appending *.tif files
I can reproduce this and the problem is not specifically for .tiff files it also happens with other formats. I will create a work item to fix this bug in the MagickImageCollection.
View ArticleNew Post: Memory leak when appending *.tif files
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: assembly reference not sticking
You probably have to add the assembly to the web.config You should edit your web.config and add the...
View ArticleNew Post: Magick.NET and Mono
So, does Magick.NET works on Mono? 1) yes, out of the box 2) must be recompiled to use with Mono 3) no, but Mono support is planned 4) no, noway! 5) other?
View ArticleNew Post: Magick.NET and Mono
no idea? ImageMagick is cross platform, why would you want to use Magick.NET with Mono?
View ArticleNew Post: Geometry units
I would like to express geometry in units other than pixels, but can't figure out how. I'm building a scanner application where it would be convenient to size the image in inches or centimeters....
View ArticleNew Post: Geometry units
You can only express geometry in pixels, you will have to do the calculations yourself.
View ArticleNew Post: Geometry units
Rats. Anyway, thanks for a great dll - makes life so much easier.
View ArticleNew Post: Drawing Italic / Different font text
This doesn't seem to work to draw italic, bold Tahoma text:using (var img = new MagickImage(img.Filename)) { // Draw text working.StrokeColor = new MagickColor("#FFFFFF"); working.FillColor =...
View ArticleNew Post: Drawing Italic / Different font text
If you want to do multiple draw operations you should use the overload of Draw that accepts an IEnumerable<DrawableBase>. I posted an example here: https://magick.codeplex.com/discussions/445822....
View ArticleNew Post: Magick.NET and Mono
I see, the problem is in managed C++. I want to use Magick.NET with Mono because Mono is cross-platform too. Now for a simple cross-platform solution I need to create some sort of an object wrapper...
View ArticleNew Post: Magick.NET and Mono
I might create a build for Mono in the future when I have too much spare time on my hands. I don't know if it is possible but I will give it a try later.
View Article