New Post: Black and White and Sepia
Just for anyone interested, one other method that does seem promising is image.Modulate(90, 0, 100); It seems to allow better control then simply turning it to Grayscale.
View ArticleNew Post: Black and White and Sepia
Just to be clear do you want a black and white image or a grayscale image? For me a black and white image only contains two colors (black and white). You should only use bilevel if that is your goal....
View ArticleNew Post: BPP
FYI - I tested your change and it works however on a CMYK image the channels are called Red, Green, Blue, Black. I'm not sure that's intended or not. For my use it doesn't matter. Thanks, Darren
View ArticleNew Post: BPP
This is happening because the enumeration has the same value for Red as Cyan. There is nothing I can do about that :)
View ArticleNew Post: BPP
Sorry - i didn't see your response. Here's my previous edit. --update I take it back. It mostly works but on SRGB 256 color 8-bpp it's returning 48-bpp because for some reason it thinks the images are...
View ArticleNew Post: Black and White and Sepia
Sorry. I should have been clearer. Yes. When I said black and white I was referring to Grayscale. We produce prints for fine art photographers and I learned a while back that some become indignant when...
View ArticleNew Post: Jpeg XR support
Hi, I didn't found a way to use the JPEG XR format in MagickNet. This format is JXR in ImageMagick (http://www.imagemagick.org/script/formats.php#supported), but since it requires the jxrlib, I think...
View ArticleNew Post: Jpeg XR support
ImageMagick does not link with Jpeg XR, it uses the binary to read/write an Jpeg XR image. You will have to create your own delegates.xml file. But you might want to reconsider using this if you want...
View ArticleNew Post: Jpeg XR support
My mistake.... I have been duped by a Jpeg XR demo which also uses javascript for image rendering. Effectively, there's only IE supports for JXR, so it's worst than WebP. I want to avoid PNG because of...
View ArticleNew Post: BPP
This image is a bit confusing because it has a color map that uses 16-bits per channels. And with 3 channels this totals to 48-bpp. This is different from how the image is stored on disk. Each 8 bits...
View ArticleNew Post: Fred's ImageMagick Scripts
Just curious if anyone has successfully implemented any of Fred's ImageMagick Scriptshttp://www.fmwconcepts.com/imagemagick/ and if so, how did you go about doing this. There are a lot of cool things...
View ArticleNew Post: Fred's ImageMagick Scripts
I have not heard of anyone who translated Fred his script to C#. If I would do this myself I would create a class for each script. But I don't think if you are allowed to do this without his permission...
View ArticleNew Post: Fred's ImageMagick Scripts
Interesting. That seems simple enough. There are a few scripts that we could definitely use but I might be better off trying to write my own following your example. MagickNet seems more then...
View ArticleNew Post: Merge huge images into one.
Hello, I'm new in using Magick.NET. And I need merge several huge images(each 29000x14500). I tried next sample:static void Main(string[] args) { try { using (MagickImageCollection images = new...
View ArticleNew Post: Merge huge images into one.
JPEG/JFIF supports a maximum image size of 65535×65535 pixels (http://en.wikipedia.org/wiki/JPEG). Your width or height (not sure what mosaic does) is 29000x3 = 87000. You should pick a different...
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
I've been trying to resize the image - I have read the image size - and yes they're huge. I can read the info, but the minute I try and get the image, everything freezes - I'm clearly doing something...
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
The reason it still 'hangs' is because you are resizing the image after you read it. It will still allocate the memory for an image that is 37017x31865. This worked on my machine but took almost all my...
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
Ohhh...... I thought you had to load it first and then resize it. I knew I was doing something wrong - thanks a million for all the help!
View ArticleNew Post: Magick.NET-7.0.0.0009-Q16-x64-net40-client Freezing System
Do you need my paypal account to send me that million? :P
View Article