New Post: PC vs Mac byte order?
Is there a way to force a .tiff file to be saved with PC byte order instead of MAC byte order when doing a conversion? Thanks
View ArticleNew Post: PC vs Mac byte order?
The tiff writer should use the default byte order of your system. But you can force it like this:using (MagickImage image = new MagickImage("input.tiff")) { image.SetDefine(MagickFormat.Tiff, "endian",...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Apology for the delay, I had a peak rush on project timeline.. =/ Uh..ya..my mistake, it should work, hehe.. I do not currently have the access to related files, will get back to you by early tomorrow..
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
No need to rush. Feel free to post your message when you have time to do this. I check the discussion page daily so I will see when you have posted your message.
View ArticleNew Post: Remove Background
I've seen some examples (https://magick.codeplex.com/discussions/459021 or https://magick.codeplex.com/discussions/461154) of how to remove a background but I can't seem to figure out how to remove a...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Here's the link to related images, there's 3 files in it, the original file, the re-sized to black file, and re-sized correctly with opencl set to...
View ArticleNew Post: PC vs Mac byte order?
Cool. Thanks. In in terms of determining the byte order of an image I'm seeing this particular issue. If you look at both of the following...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Just in case if you have time, I've some new issue while progressing my project. Its regarding to UI/Background thread issue, how easy is it for you to generate some long running animation with WPF?...
View ArticleNew Post: EPS to PNG conversion - Different than ImageMagick CLI
Thanks a ton. Snippet generated correct image. Have a good day ahead.
View ArticleNew Post: Remove Background
Your commands translates to the example below. But it does not work correctly due to a bug in ImageMagick. This will be fixed the next release of Magick.NET. using (MagickImage image = new...
View ArticleNew Post: PC vs Mac byte order?
I would also expect that image.Endian would report the correct value. I will have to contact one of the ImageMagick developers and ask why this was implemented otherwise. I will get back to you when I...
View ArticleNew Post: Resize(int width, int height) and Grayscale effect
Thank you for your images. I don't understand why disabling OpenCL would resolve the issue but I would suggest you to disable it. I cannot reproduce the problem with the distort operation. Are you...
View ArticleNew Post: System.AccessViolationException when combining two images
After continuing this conversation by e-mail we figured out that the video card driver only supported OpenCL 1.0. ImageMagick needs at least 1.1 but there was no check for it. I have added a patch to...
View ArticleNew Post: WPF Application crashing with Exception Code c0000005
I am converting a large number of PDFs to PNGs in a multi-threaded WPF application that gets document locations from a database and after conversion, I put the location of the converted document into...
View ArticleNew Post: WPF Application crashing with Exception Code c0000005
I would first advise you to upgrade to the latest version of Magick.NET. Can you reproduce the issue when you disable OpenCL? (MagickNET.UseOpenCL = false)
View ArticleNew Post: Transparency/image background
Is there a way to maintain the background color of an image? My overall goal is to take an image that has a transparent background and make sure that the transparent background stays when converting to...
View ArticleNew Post: Transparency/image background
Can you post a small code sample and a link to an image so I can reproduce this issue? The background should not just suddenly change to white.
View ArticleNew Post: WPF Application crashing with Exception Code c0000005
I get the following error on MagickNET.UseOpenCL = false :An exception of type 'System.TypeInitializationException' occurred in Magick.NET-x64.dll but was not handled in user code. Additional...
View ArticleNew Post: WPF Application crashing with Exception Code c0000005
Can you try again with this development build: https://www.dropbox.com/sh/2omlarb120mecwz/AAB_d_JPd4X_ubmW0UlVfmX_a.
View ArticleNew Post: Transparency/image background
I was trying to find an image where the above issue was occurring but I came across a different error using the following image. I have ghostscript...
View Article