New Post: BPP
While that would be helpful it wouldn't immediately solve my problem. If it were changed to return an int of the Count of Channels it would help. At least then I could get the Depth * the ChannelCount...
View ArticleNew Post: BPP
I thought IEnumerable<Channels> would be more useful because it will tell you which channels the image contains. And with the help of Linq you can do the following:using (MagickImage image = new...
View ArticleNew Post: BPP
I'm fine with your suggested change. It's easy enough. I hadn't considered Channels.Count().
View ArticleNew Post: Is it a way to force Magick to use GPU?
Oh, thank you very much for help. If we'd need to test it before the release, I'll contact you.
View ArticleNew Post: problem creating transparent Pngs from PSD
Hi, I was wondering if you could help with an issue I'm having. I'm trying to extract specific layers from a PSD (which may be a transparent layer) but when I export them to PNG all I get is the alpha...
View ArticleNew Post: problem creating transparent Pngs from PSD
Are you using the latest version of Magick.NET? And can you add a link to your input file so I can try to reproduce this. Feel free to contact me through CodePlex if you don't want to publicly share...
View ArticleNew Post: problem creating transparent Pngs from PSD
Hi, Thanks for such a fast reply. Yeah I updated to the latest version of Magick.NET-x64 a couple of days ago. It's the 2nd PSD I've tried it on so I'm convinced I'm doing something wrong. Here's the...
View ArticleNew Post: problem creating transparent Pngs from PSD
Are you sure you upgraded to the latest version? This looks a lot like a bug from the 7.0.0.0007 version of Magick.NET. I just tried your code and I am getting the correct output. The expected image...
View ArticleNew Post: problem creating transparent Pngs from PSD
You know what that did it. I'm in the VS 2015 preview and package manager is acting a little screwey. The library said 7.0.0.9 but the file on disk said 7.0.0.7 so I removed it completely and re-added...
View ArticleNew Post: problem creating transparent Pngs from PSD
It never hurts to help :). And your post will probably help someone else who runs into the same issue.
View ArticleNew Post: It seems that blur is doing something strange.
I'm trying to apply round mask to pictures. The code for creating mask is below: private static MagickImage CreateMask(int diameter) { var mask = new MagickImage(MagickColor.Transparent, diameter,...
View ArticleNew Post: It seems that blur is doing something strange.
This looks like a bug in ImageMagick, I will investigate this for you. You can however make this method a bit simpler. If you start with a black background and you draw a white circle you won't need...
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
This could easily be something I'm doing, I have the identical below, just for .NET 3.5, and this one is built against .NET 4.5 - so when I run the code below, I completely freeze my system. It's so...
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
Does this problem only happen in the .NET 4.5 build? Does this happen with a specific svg file or does it happen with any svg file? Are you executing the code in a multi threaded environment?
View ArticleNew Post: IPTC tags
I've been asked to add IPTC tags to images across a site which deals with licensing images of works of art, for reproduction in magazines and so on. They would like me to populate each image with the...
View ArticleNew Post: Overlaying two images with opacity
QuantumOperator method is removed on the latest version. Do you have a workaround?
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
Okay - glad you asked about the various SVG's. It does appear it's just with this one particular model. I'll test the older build and see if there's an issue I wasn't aware of, and yes it will be...
View ArticleNew Post: Overlaying two images with opacity
keremdemirer wrote: QuantumOperator method is removed on the latest version. Do you have a workaround? Nevermind, I found the solution from another discussion....
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
Can you provide a link to the file that is causing this issue? It might be a bug in ImageMagick or librsvg. Contact me through codeplex if you don't want to share the file publicly.
View ArticleNew Post: Single and Multipage TIFFs to SINGLE PDF
I am wanting to combine a directory that may contain single or multi-page TIFFs. I want to combine all of these into a single PDF using Magick.NET I see how I can do it with single page PDFs by...
View Article