New Post: Web Application Difficulties
Could you start a new topic instead of using an old one? And can you add a short code example with a link to an input and output image?
View ArticleNew Post: ImageMagick vs Magick.Net
Just wondering is Magick.Net are fully implement all features that ImageMagick can do? MagickScript are Magick.Net unique implementation? Thank you very much.
View ArticleNew Post: ImageMagick vs Magick.Net
Magick.NET tries to implement all features from ImageMagick. It uses Magick++, but not all features from ImageMagick are implemented. I am working on implementing the missing features in Magick++....
View ArticleNew Post: ImageMagick vs Magick.Net
thanks for reply MagickScript is cool feature, allow me not to hardcoded everything ^^d any chance to have jpeg:hint implement? thank you very much
View ArticleNew Post: ImageMagick vs Magick.Net
You can already set coder specific options like this:<setOptionformat="Jpeg"name="size"value="128x128"/>I am assuming you mean jpeg:size instead of jpeg:hint.
View ArticleNew Post: ImageMagick vs Magick.Net
yes, you are right its a jpeg:size possible to use without MagickScript? thank you
View ArticleNew Post: ImageMagick vs Magick.Net
You can do it like this:using (MagickImage image = new MagickImage()) { image.SetOption(MagickFormat.Jpeg, "size", "128x128"); }Everything that is possible with MagickScript is possible with the...
View ArticleNew Post: 64 bit does not work
I'm having the same problem. How does one "disable the option 'enable 32 bit applications' in Visual Studio 2010 for a vb.net project? I'm running in Windows 7 64bit. I have tried forcing the "x64"...
View ArticleNew Post: 64 bit does not work
Please ignore previous post. The problem was in the 64 bit VC++ redist (using 2010 not 2012). Using the correct redistributable solved the issue completely. Maybe the originator of the question thread...
View ArticleNew Post: 64 bit does not work
Thanks for the information, this will definitely help other users.
View ArticleNew Post: 64 bit does not work
I'm not a time traveler, funny. It sure seems to me that I've either been using this (or a predecessor of sorts) since about this time last year. Something still isn't right, I can't get my project to...
View ArticleNew Post: Add border to image
What is the proper technique to add a border to an image. I've wrestled with this for days, and no matter what I try, MagikNet messes with my image. I end up with it either skewed, distorted, converted...
View ArticleNew Post: Add border to image
You could try to following:using (MagickImage image = new MagickImage(@"input.png")) { image.Crop(100, 100, Gravity.Center); image.BorderColor = Color.Purple; image.Border(10);...
View ArticleNew Post: 64 bit does not work
Are you using the .NET 2.0 version of Magick.NET? You should install Visual C++ Redistributable for Visual Studio 2008 x64 if you do.
View ArticleNew Post: 64 bit does not work
I think that was the issue. I had both on my development machine, but the target server only had 32 bit. That seems to resolve it! Thanks for your help.
View ArticleNew Post: Add border to image
Damn, I'd bet my bottom dollar I had done that, and it skewed the image. But I just tried it and it did do exactly as advertised. I had done that as my first attempt, and it skewed (at least something...
View ArticleNew Post: How to read and write Jpeg Metadata (IPTC and XMP) using Magick.NET?
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Replace color with another
Here is an example of what I would like to do:http://www.imagemagick.org/Usage/color_basics/#replace For example to replace a 'blue' color with say 'white' you would use a command like this... convert...
View ArticleNew Post: didn't find how to set interlaced png
It will be this: image.Interlace = Interlace.Plane;I will try to publish a new release this weekend but I don't know if I will be able to do it.
View Article