New Post: Scaling large images
What is the amount of memory in your system? And are you using the x86 or x64 version of Magick.NET / convert.exe ? Do you still see a temp file being created with the command line?
View ArticleNew Post: CMYK jpeg to RGB jpeg, leaving image as CMYK.
I've tried the sample for converting from CMYK to RGB and the output still appears to have CMYK embedded. var settings = new MagickReadSettings(); settings.ColorSpace = ColorSpace.RGB; using...
View ArticleNew Post: Scaling large images
I have 8 Gb of memory and using x86 version. No, command line tool doesn't create temp files, but application based on library creates huge temp files.
View ArticleNew Post: CMYK jpeg to RGB jpeg, leaving image as CMYK.
Can you add a link to your image? If you don't want to publicly share your image feel free to contact me through CodePlex.
View ArticleNew Post: DPX Image Format to TIFF not work?
hi, is the bug in the last "6.8.8.201" version already fixed ? PS: did you get the book from amazon? :)
View ArticleNew Post: Scaling large images
I just realized why this doesn't work. Magick.NET is build with HDRI support which means each channel uses 4 bytes. For each pixel this will be a total of 16 bytes (RGBA). This will be changed in...
View ArticleNew Post: DPX Image Format to TIFF not work?
This bug has been fixed. And thank you for the book, I had no idea who send it to me :)
View ArticleNew Post: DPX Image Format to TIFF not work?
ok, i will test it :) i thought that amazon write the sender somewhere, this was my first gift that i have sent from amazon :)
View ArticleNew Post: DPX Image Format to TIFF not work?
It does but not your nickname on CodePlex :). I send you a message through CodePlex, can you reply to that email?
View ArticleNew Post: DPX Image Format to TIFF not work?
mhh, i have test it, but i got the same result (false colors)Dim matrix As New ColorMatrix(3) matrix(0, 0) = 0.4124564 matrix(1, 0) = 0.3575761 matrix(2, 0) = 0.1804375 matrix(0, 1) = 0.2126729...
View ArticleNew Post: DPX Image Format to TIFF not work?
You should set the BitDepth as the last operation before you write your image because this will clamp your pixels to 12 bit. You should do it like this:Using image AsNew MagickImage(input)...
View ArticleNew Post: Scaling large images
I get it. Is there any way to improve performance of application, except switching to x64 version, which, I assume, won't help much? Maybe using gcAllowVeryLargeObjects? Performance in my case is quite...
View ArticleNew Post: Scaling large images
Switching to the x64 can improve the performance as long as your image still fits in your computer his memory. Your performance will degrade dramatically once disk cache has to be used. With the x86...
View ArticleNew Post: Scaling large images
Yes, switching from 16 to 4 bpp would be great and pixel range 0-255 is exactly what I need. How can I obtain this version?
View ArticleNew Post: Scaling large images
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: CMYK jpeg to RGB jpeg, leaving image as CMYK.
That works, but the palette goes very grey. I'll send you an image if that's OK of the before and after.
View ArticleNew Post: Does Magick.Net support "caption:" functionality?
How do you combine the caption functionality with gravity? I need to be able to place text aligned left, centered or right. I have got it working using image.Draw with a collection of Drawable objects...
View Article