New Post: IPTC data unreadable
https://drive.google.com/file/d/0B6wQHfPogTpcUlpLQV94R2NaMmc/view Here's a sample file (001.tif) with IPTC data which was created through Magick.net - and the IPTC data is readable if I open it in...
View ArticleNew Post: IPTC data unreadable
What is the exact version of Magick.NET that you are using?
View ArticleNew Post: IPTC data unreadable
And can you provide me with a code sample that you used to create the IptcProfile for the file '001.tif'?
View ArticleNew Post: IPTC data unreadable
public void ApplyMetaDataToImageFile(string imageFilePath) { using (var image = new MagickImage(imageFilePath)) { var imageWithMeta = ApplyMetaDataToImage(image); imageWithMeta.Write(imageFilePath); }...
View ArticleNew Post: IPTC data unreadable
I just added a unit test to Magick.NET and I can reproduce the issue. It looks like a problem in the TIFF writer/reader. It does work when the output format is PNG. This is most likely a bug in...
View ArticleNew Post: System.AccessViolationException when comparing two images
When comparing two images in my project I often get an AccessViolationException from MagickImage.Compare(MagickImage). I've validated that both of the MagickImages are not null, and are populated. This...
View ArticleNew Post: System.AccessViolationException when comparing two images
I'm going to try setting "MagickNET.UseOpenCL = false" when I get to my office in the morning and see if that makes a difference. I will report back with my findings.
View ArticleNew Post: System.AccessViolationException when comparing two images
Do 'Actual.Image' and 'Expected.Image' have the same dimensions? And does the problem disappear when you only check them if they have the same size? This might be a bug in ImageMagick.
View ArticleNew Post: vs2010 error
I am developer from china, My application have been developed in visual studio 2010,using .net 4. I tried to add Magik.NET x86 dll,but it throws an error ,'Could not load file or assembly...
View ArticleNew Post: vs2010 error
i have installed 2012, then installed "Visual C++ Redistributable for Visual Studio 2012 Update 4". set up a new project , then add reference to Magick.NET-x64.dll. But when i used following codes:...
View ArticleNew Post: vs2010 error
Did you reboot your machine after you installed the Visual C++ Redistributable?
View ArticleNew Post: System.AccessViolationException when comparing two images
Actual.image will be an image, in png format, with unknown image dimensions, grabbed using Seleniumn's capture screen functionality. I have been relying on Magick.Net to determine if the images were...
View ArticleNew Post: System.AccessViolationException when comparing two images
I am just asking if that fixes the problem to make it easier for me to track down the problem. This will of course be fixed.
View ArticleNew Post: System.AccessViolationException when comparing two images
I figured as much. Until then, and for verification, I'll keep the guard clauses in :). Good news. Just got a successful run on my deployment machine (this is a first!). So, it definitely looks like...
View ArticleNew Post: possible .eps to .png bug
I have two .eps images. One converts to .png without any issues. The second is blurry. Please let me know if you can't download them to test with. Image #1(good):...
View Article