New Post: MagickImage.Resample has no effect
I'm using the following code:public static void InPlaceResample(string source, int width, int height) { using (var image = new MagickImage(source)) { image.Resample(width, height); image.Write(source);...
View ArticleNew Post: MagickImage.Resample has no effect
If you only want to change the DPI you should use the Density property. Your method signature has a width/height and not a DPI. Are you sure you only want to set the DPI of the image?
View ArticleNew Post: MagickImage.Resample has no effect
I tried the Density property, and it did indeed change the DPI to what I want (300 to 200 squared in my test), but the scale decreased dramatically from 2550x3300 to, if I recall correctly, something...
View ArticleNew Post: MagickImage.Resample has no effect
Hmm, trying again it seems to work fine with the Density property. Maybe I had something else in there mucking things up.
View ArticleNew Post: Feather / anti aliasing / remove jagged lines
Can you add a link to your image? I mean the original emf file (8060.emf).
View ArticleNew Post: Couple of deployment Question regarding MagickImage.net (ANY CPU) &...
I am not sure why you keep calling this library MagickImage.Net but the name is Magick.NET. Here is an answer to your questions:That sounds impossible, can you double check this? Maybe your machine...
View ArticleNew Post: PHASH
There is a work-around, by doing the grayscale before the resize, it doesn't bomb on the resize. It's terribly slow, but it works.
View ArticleNew Post: Index color and RGB color
It seems I misunderstood your problem. Can you post your code in a code block (```C#) next time? If you want your image to be indexed you should set the ClassType to Pseudo:using (MagickImage image =...
View ArticleNew Post: PHASH
The new PerceptualHash method and class has been added to the new release Magick.NET 7.0.0.0003.
View ArticleNew Post: Feather / anti aliasing / remove jagged lines
It seems that there is an option to modify ImageMagick to force it to antialias (http://stackoverflow.com/questions/1422949/emf-with-forced-antialiasing). Please give me a couple of days to investigate...
View ArticleNew Post: Couple of deployment Question regarding MagickImage.net (ANY CPU) &...
Thanks for your response. Sorry about the name mixup. Due to Classes of Magick.NET. (i.e. MagickImage) Let you know about the merge module related stuff.
View ArticleNew Post: [How to] Read date taken from MagickImage object?
Hi dlemstra, thank you for your answer. I think this DateTime can be read also from MagickImage object then I can save some rows of code. :) I'm trying to make some examples with Magick.Net for reading...
View ArticleNew Post: [How to] Read date taken from MagickImage object?
I won't add a DateTime property because an image can also be read from a stream. You can find some example about reading exif data here:...
View ArticleNew Post: Magick.NET Any CPU Requirement/s
Hi, I would just like to inquire the requirements needed to be able to successfully use the functionalities found in Magick.NET Any CPU dll. Should both 32- and 64-bit Microsoft Visual C++...
View ArticleNew Post: Magick.NET Any CPU Requirement/s
I have updated my documentation (https://magick.codeplex.com/documentation) to explain how the AnyCPU version of Magick.NET works. Please let me know if this does not answers your question so I can...
View ArticleNew Post: Magick.NET Any CPU Requirement/s
Thank you. The explanation found on the documentation does answer my question. I would like to know where i could find MagickAnyCPU.CacheDirectory using the DLL (Magick.NET-AnyCPU.dll)?
View ArticleNew Post: Magick.NET Any CPU Requirement/s
There is a class called MagickAnyCPU in the ImageMagick namespace that has a static CacheDirectory property.
View ArticleNew Post: Magick.NET Any CPU Requirement/s
Is there a way to use the dll without installing the MS Visual C++ Redistributable to the server?
View ArticleNew Post: Feather / anti aliasing / remove jagged lines
The ConvertToEmfPlus method described in the stackoverflow post did not work. And writing my own enumeration sounds like too much work. I have a simpler work-around for you. You could just blur the...
View Article