New Post: Loading progress
There is no way to do this. In my image viewer MagickViewer(https://magickviewer.codeplex.com/) I just show a loader while I load the image in the background..
View ArticleNew Post: Is VS2013 and .Net 4.5 supported?
Just asking because under the documentation it says: System Requirements For Use.NET 2.0 or 4.0 Visual C++ Redistributable for Visual Studio
View ArticleNew Post: Memory leak in MagickImage.Read
I'm trying to track down a heap memory leak and it seems to be some unmanaged memory allocated by ImageMagick (using 7.0.0.0018 Q8 x64). And I'm wondering if it's something that I'm doing wrong. I have...
View ArticleNew Post: Reduce pictures to very low number of colors
Hi I would like to use Magick.net with VB.Net to convert high res color pictures to a controlled number of colors (between 4 and 9) maybe using a personalized Ordered dither map. Anybody can help ?...
View ArticleNew Post: Is VS2013 and .Net 4.5 supported?
.NET 4.5 is supported. I have changed the text to clarify this. But you do need the 2012 C++ redistributable for now.
View ArticleNew Post: Cropping
Hi! I've tried to replace my code:using (MagickImage image = new MagickImage(filename)) { MagickGeometry gCrop = new MagickGeometry(); ... for(...) { SetGeometry(gCrop...); MagickImage clone =...
View ArticleNew Post: Loading progress
I did some more research and it turns out that there is actually something that could report progress but I wonder if it is reliable. It only reports progress for each scanline and not the process...
View ArticleNew Post: LAB image - adjusting levels like photoshop
Hello, i know there´s an option to adjust the levels, but i can not find a manual how to do it for a LAB 16Bit image. In photoshop i have the following dialogue: And i can adjust the L, A and B...
View ArticleNew Post: Memory leak in MagickImage.Read
Would it be possible to create a small example program that demonstrates this behavior and share it on something like dropbox? This program should contain a loop that is executed a lot of times so I...
View ArticleNew Post: Cropping
I have a unit test for cloning part of an image. I added some extra tests and they all pass. Can you create a small example program and share it on something like dropbox?
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
Yes, I set the positions. If the save a layer and load from there on, it is good for PSD. If don't save the layers, only save the psd, the file is bad.
View ArticleNew Post: Cropping
Here is simple example. I probably just missed something, but when I create a clone and crop it afterwards, it is OK. When I use the Clone method with parameters, the image properties (colorspace,...
View ArticleNew Post: Cropping
I can explain why this is happening. When you call the Clone method a 'MagickFormat.Null' image is created with a transparent background and the pixels are copied from the source image to the...
View ArticleNew Post: Multiple layer (PSD) placing images on top of each other
I don't understand why your images are so different if you think you are specifying the correct positions. I don't have enough information at the moment to help you further. Would it be possible to...
View ArticleNew Post: Reduce pictures to very low number of colors
You can reduce the number of colors with the Quantize method. You can specify your own ordered dither map with the OrderedDither method. But then you will need to use your own .xml files and modify the...
View ArticleNew Post: Caption background color ignored
I am trying to place colored text on a black caption area. However, it seems no matter what I set the background color it doesn't change. The caption area is always remains white. Any ideas what is...
View ArticleNew Post: LAB image - adjusting levels like photoshop
When you have a LAB image then L = R, A = G and B = B.
View ArticleNew Post: Memory leak in MagickImage.Read
Which MemoryStream are you referring to? I would love to throw together a little program, the problem is I can't reproduce it. I only see it on production boxes so I'm trying to use xperf to track it...
View Article