New Post: [How to] Read date taken from MagickImage object?
Hi, in InfranView when I view an image I can see "File date/time" like image below I try to read this date taken value from MagickImage object but I don't know where to find this property. Can you give...
View ArticleNew Post: [How to] Read date taken from MagickImage object?
You should read that information using the FileInfo class of C#. This is not something that only works with images. p.s. If you are trying to build something like IrfanView, then take a look at...
View ArticleNew Post: Question about composite command and images of different sizes
Hello, I'm trying to apply a watermark to an image. I've got an example image that is 1024x768 and a watermark image that is 584x116. I'm resizing the watermark to match the example, then using the...
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
Hi folks, could someone please create a working example on how to create a PSD file that contains multiple layers with alpha channels and transparency? Thank you very much! Cheers, Hendrik
View ArticleNew Post: Question about composite command and images of different sizes
Your image is not Resized to the specified width and height because it will maintain aspect ratio. When the image is drawn on top it will make the 'unknown' part black. Settings the background to...
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
You could do the following:using (MagickImageCollection images = new MagickImageCollection()) { images.Add(new MagickImage("firstlayer.png")); images.Add(new MagickImage("secondlayer.png"));...
View ArticleNew Post: Setting RGB color values of an image
That was great. Thanks a ton I am done with the coding but when i tried to release the product to a different machine. its not working in any machine ,the application breaks before its start I have...
View ArticleNew Post: Setting RGB color values of an image
Are you using the .NET 2.0 or the .NET 4.0 release of Magick.NET? And do you get an exception when the application crashes?
View ArticleNew Post: Setting RGB color values of an image
I have downloaded Magick.NET-7.0.0.0002-Q8-AnyCPU-net40-client.zip
View ArticleNew Post: Setting RGB color values of an image
Apart from Visual C++ Redistributable for Visual Studio.NET 4.0: Visual C++ Redistributable for Visual Studio 2012 (x86 or x64) .NET 2.0: Visual C++ Redistributable for Visual Studio 2008 (x86 or x64)...
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
Have you tried that? Did it work? I'm trying something similar but it doesn't. The first of the two layers I add is always missing.
View ArticleNew Post: Setting RGB color values of an image
I am getting the error Failed to Load embedded Assembly : Could not load file or assembly Magic.NET -Q8 -x86.dll or one or more of its dependencies The specified module could not be found. But i have...
View ArticleNew Post: Please provide an example on how to create multi-layer PSD files
I have not tried the example above but this is what I would expect. But it seems the PSD coder wants you to store the layers differently. Your first image should be the 'composite/combined' image. But...
View ArticleNew Post: Question about composite command and images of different sizes
Thanks for the reply dlemstra. I've tried your suggestion, and I'm no longer getting black borders, however, now the entire image is white(though the watemark is visible). It appears that the...
View ArticleNew Post: Setting RGB color values of an image
You only need to install '.NET 4.0: Visual C++ Redistributable for Visual Studio 2012 (x86 or x64)'. The specified module could not be found error message is probably happening because your server...
View ArticleNew Post: Setting RGB color values of an image
Everything is fine now. Thanks a ton for your kind support.
View ArticleNew Post: Question about composite command and images of different sizes
dlemstra, Originally I was using the recommended download (x64) and I was not getting a transparent background. I switched over the the x86 version and now I'm getting the transparent background by...
View ArticleNew Post: Question about composite command and images of different sizes
Was your old x86 Magick.NET 7.0.0.0001? I fixed a bug in the composite method that could explain this. I cannot reproduce your problem with the latest version in 64 bit.
View ArticleNew Post: Issue with MagickImage.Negate()
The performance issue will be fixed in the next release of Magick.NET (7.0.0.0003). I don't have an ETA for the next release.
View ArticleNew Post: Issue with MagickImage.Negate()
dlemstra wrote: The performance issue will be fixed in the next release of Magick.NET (7.0.0.0003). I don't have an ETA for the next release. With OpenCL enabled? That would be great, thanks man!
View Article