New Post: Total Unique Colors of an image?
dlemstra wrote: The number of colors will always be calculated. There is a TotalColors property on the MagickImage class but I don't know if this will make a huge difference. Awesome, thats what I...
View ArticleNew Post: Total Unique Colors of an image?
I committed a change yesterday when I also noticed the difference. ColorType will use Alpha instead of Matte.
View ArticleNew Post: ImageMagic (mogrify) and Magick.NET - JPG is edged instead rounded...
Hello, i have a problem with Magick.NET-Q16-AnyCPU 7.0.0.0008 and the PDF to Image conversion. Before I'm using Magick.NET i used ImageMagick (Mogrify exe). Also for example. Original PDF:...
View ArticleNew Post: Resizing 5+mb gif files throws MemoryAllocationException
Thanks for your answer! M.b. you can suggest why does AnyCPU nuget package is using x86 library instead of x64 on both my desktop and server? Should I use x64 package instead? Can I somehow limit...
View ArticleNew Post: ImageMagic (mogrify) and Magick.NET - JPG is edged instead rounded...
Why are you using AdaptiveResize instead of Resize? The command '-resize 115' translates to Resize(115,0).
View ArticleNew Post: Resizing 5+mb gif files throws MemoryAllocationException
You are probably running your application in a 32bit application pool. I did not crash on my machine when I used the x64 package. You can use ResourceLimits to force your application to use the disk...
View ArticleNew Post: ImageMagic (mogrify) and Magick.NET - JPG is edged instead rounded...
dlemstra wrote: The command '-resize 115' translates to Resize(115,0). Thats a little bitfaulty for me. Usinghorizontal.Resize(115, 0); (or 163 instead 0) That's the result. The microsoft preview pdf...
View ArticleNew Post: ImageMagic (mogrify) and Magick.NET - JPG is edged instead rounded...
How to convert pdf to resized jpg without using ghostscript?using (var inputStream = File.OpenRead(inputFile)) { using (var outputStream = File.OpenWrite(outputFile)) { using (var memoryStream = new...
View ArticleNew Post: Colour manipulation; tonal ranges
This is more a question of usage than a technical question. I'm looking at image manipulation for a customer, we are trying to get an on screen representation of colour corrections which are being...
View ArticleNew Post: Total Unique Colors of an image?
dlemstra wrote: I committed a change yesterday when I also noticed the difference. ColorType will use Alpha instead of Matte. Great, thank you :)
View ArticleNew Post: Colour manipulation; tonal ranges
It looks like you are doing what is described here: http://docs.gimp.org/en/gimp-tool-color-balance.html. I don't know how GIMP works internally but it looks like you are just adjusting the values of...
View ArticleNew Post: Access profile data
I tried to get profile data with the function __GetProfile__(name) The function returns an ImageProfile object with data stored in a private variable called Data I'm interested in xmp data, how can I...
View ArticleNew Post: Access profile data
You can access a copy of the data with the ToByteArray method. I might add an XmpProfile class in the future.
View ArticleNew Post: Access profile data
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Losing transparency with CMYK
Are you still slated for a release at the end of January to cover the above issue/workaround?
View ArticleNew Post: StackOverflowException
Hello, great product, thanks for it. I had to develop c# application using MagickImage. Application shows picture in winforms picturebox. Also there is a listbox in a form with images fileinfos, holded...
View ArticleNew Post: StackOverflowException
I am sorry but I won't run an executable from an unknown source. You did not publish any source code so i cannot build it myself. Can you reproduce the problem with the latest version of Magick.NET?...
View ArticleNew Post: Colour manipulation; tonal ranges
Yes, that's is exactly what I'm doing. Thanks for posting back. I've given that a go, but the results are not quite as I expected. The only reason I turned to GIMP was to see if what I was trying to do...
View Article