New Post: Detecting clipping paths in JPG
I need to check if a JPG image has a clipping path or not. I have used the Interop.ImageMagick.dll earlier and then we used something like this:MagickImage img = new MagickImage(); IList<object>...
View ArticleNew Post: Detecting clipping paths in JPG
Are you sure that you are using Magick.NET? There is no Identify method in the MagickImage class. EDIT: Sorry, I did not see you posted the Interop syntax. You can do it like this:using (MagickImage...
View ArticleNew Post: Detecting clipping paths in JPG
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Update rational value for exif tag
Hello I need to update a rational value for exif tag and save the updated value to file. I'm trying to use following code but it works incorrectly:using (MagickImage image = new...
View ArticleNew Post: Update rational value for exif tag
Rational values are stored as a fraction. And the current calculation was not as precise as possible. I have modified the calculation to make it more precise. I just created a unit test with the value...
View ArticleNew Post: Update rational value for exif tag
Dirk, How soon are going to push out the next release? Have you committed these changes to the repository?
View ArticleNew Post: Update rational value for exif tag
I will try to publish a new release this weekend. And I will push my changes later today.
View ArticleNew Post: How can Rotate image without losing the size and alignment
When you rotate an image it will resize the image to make sure the rotated image fits inside the frame. Because you rotate the image multiple times it will become larger and larger. The following...
View ArticleNew Post: Disable multithreading for Magick.NET
Hello I saw that ImageMagick uses threads for processing images. There is any options to disable the multithreading for Magick.NET?
View ArticleNew Post: Disable multithreading for Magick.NET
You can disable multithreading by setting the number of threads to 1: ResourceLimits.Thread = 1;
View ArticleNew Post: Cannot get it to compile with ILMerge
I'm using the any cpu version: Unresolved assembly reference not allowed: Magick.NET.Wrapper-x86. Trying with the x64 version: The assembly 'Magick.NET.Wrapper-x64' is not marked as containing only...
View ArticleNew Post: Cannot get it to compile with ILMerge
This has to do with the changes I made to Magick.NET. I am no longer using Fasterflect and moved all the 'architecture dependent' code to a separate library. I am referencing this library in the...
View ArticleNew Post: Cannot get it to compile with ILMerge
All very clear, thanks! And a quick reply too! :P Just out of curiosity, do you think that using this flag the merge could be...
View ArticleNew Post: Cannot get it to compile with ILMerge
I don't think that option will help because you still have the unresolved reference for the AnyCPU build and for the x64 build it will probably not work since the code has non-IL features. The...
View ArticleNew Post: Cannot get it to compile with ILMerge
Yes, the flag was meant for the arch specifc version. Ah, so I could already deploy Magick to the GAC! Interesting... would you advise it when having a large number of different projects using the DLL?
View ArticleNew Post: Cannot get it to compile with ILMerge
I have never placed an assembly in the GAC and you might want to check this stack overflow question first before you do that:...
View ArticleNew Post: Cannot get it to compile with ILMerge
Well, it seems that GAC is not the right place for such a library! :) It's just that the size of ImageMagick is pretty singificant (>12 MB), multiplied for a growing number of sites... mmm I'll see!...
View ArticleNew Post: Cannot get it to compile with ILMerge
I don't think you should worry about the size of assembly. The files in your customer their site/application probably take up more space that this assembly.
View Article