New Post: add white bars/background wider than a portrait image (centering...
This code assumes that your input image is not larger then 1200x629. If you want to be able to handle larger images you should first resize it like this:if (image.Width > 1200 || image.Height >...
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
Thank you dude. How can I contribute to your project, donation wise? It's unreal to receive such nice support such as what you've provided me today. I havn't got it 100% perfect yet, but when I do, I...
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
Thanks for considering to contribute to this project. You could get me something from my amazon wish list: http://www.amazon.co.uk/registry/wishlist/1C3TE3001VQZE. I also have a PayPal account if you...
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
I sure will! Check out your list and consider PayPal depending on how big your 'wishes' get. Haha. I am having one problem. The ultimate goal is for the sidebars to be white, or even transparent. Yet,...
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
Your code uses MagickImage instead of MagickColor but that is probably a typo. I am guessing you made some kind of mistake in your project. Could you share your class on something like dropbox so I can...
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
Oh I'm sorry, yes that was a typo. 'MagickColor("White"))' and 'MagickColor.Transparent'
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
I see now what the problem is, AWS is returning me a cached image from testing. I shall reap load the image with the White alteration and let you know the results.
View ArticleNew Post: add white bars/background wider than a portrait image (centering...
That was my issue, thank you again :)
View ArticleNew Post: Why we not found Magick.NET.Wrapper.AnyCPU.dll in the download...
Hi,I tried to build Magick.Net(exactly, just reference it) under AnyCPU,it showed some issues: Could not load assembly Magick.NET.Wrapper-x86.dll. It should be a Magick.NET.Wrapper-AnyCPU.dll, isn't ?...
View ArticleNew Post: Why we not found Magick.NET.Wrapper.AnyCPU.dll in the download...
The file 'Magick.NET.Wrapper-x86.dll' is embedded inside Magick.NET-AnyCPU.dll. You might need to set the CacheDirectory (https://magick.codeplex.com/documentation) or you get this error message...
View ArticleNew Post: Why we not found Magick.NET.Wrapper.AnyCPU.dll in the download...
Thanks dlemstra, I directly reference "Magick.NET-x86.dll" libs instead of "Magick.NET-AnyCPU.dll" , the issue was solved.Anyway, I will try to reference "Magick.NET-AnyCPU.dll" again following your...
View ArticleNew Post: DCM support questions !
Hi ! First, It's a great library ! But I need more infos for the support of DCM files : Can we retrieve/access to the DICOM Tags like 'Patient Name' or 'Study date' ?I have some files with error...
View ArticleNew Post: DCM support questions !
You could share those files on something like dropbox. And if you have an anonymized file that contains a 'Patient Name' I could check if you can get those properties from the image.
View ArticleNew Post: DCM support questions !
I sent you file in my dropbox by mail. But I can't modify properly the data in tags ... Thanks,
View ArticleNew Post: DCM support questions !
I got your files and I am also unable to read them. I have not yet determined the cause for this. I will get back to you when I know more.
View ArticleNew Post: How to convert a single PNG to multi-resolution (multi size) ICO?
I successfully converted PNG image to ICO using this code:using (var magic = new MagickImage(convertImagePath)) { magic.Write(convertedFileName); } But I found that the ICO file has only 1 resolution...
View ArticleNew Post: How to convert a single PNG to multi-resolution (multi size) ICO?
You could resize your input image an put all the images in a MagickCollection and write that to your output file. But it is easier to use a builtin feature of ImageMagick for that.using (var image =...
View ArticleNew Post: Monochrome Option
Does Magick.NET support the ImageMagick -monochrome option? I can't seem to find an example. Thanks, Craig
View ArticleNew Post: Image corruption issue
I am using Magick.NET to convert TIFF images from a check scanner into to a banking industry standard. There is an image validator tool that is reporting some errors when certain images are processed...
View Article