New Post: Execution speed slower in 7.0.0.0006Q16x86 than 6.8.901Q16x86
What are you doing with the output created by the ToByteArray method? If you only need the pixels you might be better of calling reference.ToByteArray() with MagickFormat.Rgb or MagickFormat.Rgba as an...
View ArticleNew Post: Losing transparency with CMYK
I have this file located here: https://www.dropbox.com/s/4aa0pkptw1yfpsz/cartoon_network_logo_r.eps?dl=0 What I am trying to do is take an .eps image and convert it to .png. It does it, but the...
View ArticleNew Post: ToByteArray performance issue
Hi, I have to convert bitmap to byte[] but compress rate when i use Encoder of .NET is not good. I found Magick.NET with compress rate good!! Yeah!! Thanks dlemstra! But performance of Magick.NET to...
View ArticleNew Post: Losing transparency with CMYK
This was also reported in this topic: https://magick.codeplex.com/discussions/570506. At this moment it is not possible but I will take a look at it when I have a couple days off at the end of the year.
View ArticleNew Post: ToByteArray performance issue
What ToByteArray actually does is create a 'blob' (byte array) and call Write with that byte array as an argument. Your comparison with the default .NET encoder does not seem fair. You are writing...
View ArticleNew Post: ToByteArray performance issue
Oke! I know Webp are higher compress format and cost time much better. Would U like suggest me format with high compress rate and cost time lower. Input bitmap image is desktop screen capture. What I...
View ArticleNew Post: ToByteArray performance issue
As you can see your performance increased from 31159/100=311ms to 5168/100=50ms by choosing a different output format. But JPEG compression is lossy, what do you want to do with the image after you...
View ArticleNew Post: Execution speed slower in 7.0.0.0006Q16x86 than 6.8.901Q16x86
Calling ToByteArray with Tiff as the argument seems to have eliminated the need for the ToBitmap method. This required upgrading to 7.0 rather than using the previous version, though the reduced number...
View ArticleNew Post: ResolutionUnit
How do I get the ResolutionUnits of an image? It is missing in MagickImageInfo(). If I use MagickImage().ResolutionUnits, the result is "Undefined". The image I tried has that info,...
View ArticleNew Post: Execution speed slower in 7.0.0.0006Q16x86 than 6.8.901Q16x86
What are you planning to do with the result from ToByteArray if the image is Monochrome instead of RGB. Will you be calling a different 'method'? Using MagickFormat.RGB will increase the performance...
View ArticleNew Post: Execution speed slower in 7.0.0.0006Q16x86 than 6.8.901Q16x86
Yeah, the image I sent you isn't clear but there's another case of the image processing structure to process the monochrome images. I think I may actually be parsing wrong and just getting lucky...
View ArticleNew Post: ResolutionUnit
Can you post a link to the image you are using on something like DropBox? Feel free to contact me trough CodePlex if you don't want to publicly share your image.
View ArticleNew Post: ToByteArray performance issue
I capture desktop screen and send to viewer. The viewer only view screen image. Requirement is high compress rate and cost time lower. As U see, total time to capture screen, convert from bitmap image...
View ArticleNew Post: PSDs, PNGs and Transparency
Hi, I'm new to Magick.NET and ImageMagick, and I'm wondering if there is any documentation anywhere for Magick.NET beyond the few simple examples. Specifically I'm trying to figure out how to deal with...
View ArticleNew Post: ResolutionUnit
Sample 1Sample 2 (Note: it's just a blank image for testing) Can you please implement ResolutionUnits in MagickImageInfo? And a hook to identify.exe's format function if it is readily available in...
View ArticleNew Post: Zoom Image in Winform c# using Magick.NET
Hi everyone! - First, thank you for your library, it's nice and helpful. - Second, because new uses Magick.NET library should have plenty of new things, and want to consult the people, namely the...
View ArticleNew Post: Zoom Image in Winform c# using Magick.NET
Your question seems to be about how to program a Windows Forms program that uses Magick.NET. I can only provide you with support for the library itself. You will have to look for help somewhere else.
View ArticleNew Post: ToByteArray performance issue
Can you explain what are the numbers: 5932 + 6185 +5168? And are you using Magick.NET to take a screenshot? You can do that by reading an image with the name "screenshot:"// Can you also use...
View ArticleNew Post: PSDs, PNGs and Transparency
Can you post a link to your PSD image? Feel free to contact me through CodePlex if you don't wan to publicly share your image.
View Article