New Post: IIQ file format crashing video driver
Hi, I came across an interesting situation. A few of my co-workers ran the code I wrote against an .iiq file (https://mega.nz/#!I4hTFCrQ!hKbRHNQXwy0HxOv3xqBHS47TgvkOL90Ffhc2kX8ICwc). On 2 different...
View ArticleNew Post: Support for additional IPTC metadata records
I was wondering if we could expand the support for custom IPTC fields. News agencies and editing software often override existing fields or use additional IPTC records for many purposes, i.e. "original...
View ArticleNew Post: ImageMagick cannot be found .NET x64
I had to tell the VS 2008 IDE to always copy the -native library by adding it as a file as it didn't recognize the DLL as a valid one to use it as a reference.
View ArticleNew Post: Support for additional IPTC metadata records
I think the issue is on this line: https://github.com/dlemstra/Magick.NET/blob/7a3d0fa6ecf0ba2a75e2224acab954be338c11f3/Magick.NET/Core/Profiles/Iptc/IptcProfile.cs#L48. Instead of parsing the enum I...
View ArticleNew Post: IIQ file format crashing video driver
I think this has to do with OpenCL. I made some changes yesterday to make sure dcraw (that is used to read the IIQ file) is properly initialized. At the moment disabling OpenCL in Magick.NET will not...
View ArticleNew Post: Support for additional IPTC metadata records
I would love to help, but not sure if I understand. If the resulting object in this line is IptcTag then they're limited to whatever values IptcTag enum has listed. I believe it would require adding...
View ArticleNew Post: Support for additional IPTC metadata records
An enumeration is simply an integer that you can represent with a name. And enumerations are not limited to the known values. The following example will demonstrate this:using System; publicclass...
View ArticleNew Post: Support for additional IPTC metadata records
I see you made the changes on github. Thanks for helping me out. I will merge your changes if you send me pull request.
View ArticleNew Post: Support for additional IPTC metadata records
I've made change, but uploaded it too early. New to git. Either way, I'm unable to build Magick.NET with VSExpress 2015. Checkout.cmd ends with asking me to "TYPE:" something, followed by errors no...
View ArticleNew Post: Support for additional IPTC metadata records
It seems I was using the wrong folder structure when copying the files to and from DropBox. You should download the zip file again and copy it to the ImageMagick folder.
View ArticleNew Post: Support for additional IPTC metadata records
It compiles now, thanks! Now I was able to build Native dll, but encountered some other problems - can't build AnyCPU and attached x86-Q16.dll still results in DllNotFoundException for Native.dll,...
View ArticleNew Post: Support for additional IPTC metadata records
AnyCPU works a bit different. You will need to run Tools\GenerateAnyCPU.cmd before you compile it. I have merged your pull request and your fix will be available in the next version of Magick.NET.
View ArticleNew Post: Support for additional IPTC metadata records
I've tried referencing Magick.NET-Q16-x86.dll in my project and I can use the library, but the moment I try to build it, I get: An unhandled exception of type 'System.DllNotFoundException' occurred in...
View ArticleNew Post: Support for additional IPTC metadata records
Ok, it seems manually putting Magick.NET-Q16-x86.Native.dll in Debug/Release folders solved the error and it runs now.
View ArticleNew Post: JPEG-2000 encoder does not respect ColorSpace changes
I am unsuccessfully attempting to use Magick.NET to create 8-bit grayscale JPEG-2000 files. The Magick.NET library (version 7.0.3.500-Q8-x86) appears to not respect any changes to the ColorSpace. The...
View ArticleNew Post: JPEG-2000 encoder does not respect ColorSpace changes
Would you mind sharing your test.bmp file so I can use that to reproduce the issue? Can you try setting m.ColorSpace? That should do the same as -colorspace.
View ArticleNew Post: JPEG-2000 encoder does not respect ColorSpace changes
Done. See here for the issue page.
View ArticleNew Post: Complementary Colour for Image
HI I am writing text over an image and would like to find the 'best' colour for this - realising that there will be no 'right' answer if the image is multicoloured - but many images have a predominant...
View ArticleNew Post: Complementary Colour for Image
Your command would translate to something like this: MagickColor fillColor; using (MagickImage image = new MagickImage("Waffle.jpg")) { image.Scale(new MagickGeometry("1x1!")); using (PixelCollection...
View ArticleNew Post: Complementary Colour for Image
Thanks that definitely helps - I am now getting the 'average' color for the picture - and it appears to be what you would expect. Is there an easy way to get the complementary color to the average? I...
View Article