New Post: Magick.NET and Mono
A GraphicsMagick library exists for Node.js which wraps the executable in a fluent interface: http://aheckmann.github.io/gm/. Maybe that idea could be ported to .NET to make a multiplatform library :)...
View ArticleNew Post: Magick.NET and Mono
I don't really want to switch to P/Invoke or wrap the executable because I am quite happy that everything is now included in one library that only depends on the C++ redistributable library. If I ever...
View ArticleNew Post: Magick.NET and Mono
That's fair enough, having it all as one library makes it easy to use :) For what it's worth, here's the solution I came up with for resizing images using GraphicsMagick, which works on both MS.NET and...
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
i'm using windown server 2012 and add Magick.NET-x64 in class library visual 2008. I'm build gacutil.exe assembly use FTP :...
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
I am sorry but your message is quite confusing. What do you mean by 'when upload success --> convert thumb image :'? Which version of Magick.NET are you using, are you using the .NET 2.0 version?...
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
i'm using the .NET 2.0 version. And build asembly in class library . when I call Magick.NET through library -> System.IO.FileNotFoundException: Could not load file or assembly 'Magick.NET-x64' ....
View ArticleNew Post: Resize filter parameters
// Magick.NET 6.8.6.801 .Net 4.0 void result(object z){ System.Diagnostics.Debug.WriteLine(String.Format("{0}", z ?? "null")); } using (MagickImage img = new MagickImage(src)) { String z; z =...
View ArticleNew Post: Resize filter parameters
Thank you for finding that bug. The artifact is set but GetArtifact now returns the attribute instead of the artifact.
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
Did you install Magick.NET-x64 in the GAC on your server? I don't have experience with installing assemblies in the global assembly cache but it looks like your application cannot find Magick.NET-x64...
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
i'm using class library as FTP Provider , not website. Ex: http://www.iis.net/learn/develop/developing-for-ftp/how-to-use-managed-code-c-to-create-an-ftp-provider-that-prevents-leeching .Thanks for the...
View ArticleNew Post: System.IO.FileNotFoundException: Could not load file or assembly...
Did you do the following on your server?gacutil.exe /if "c:\folderwithyourfiles\Magick.NET-x64.dll" gacutil.exe /if "c:\folderwithyourfiles\YourLibrary.dll"
View ArticleNew Post: Image Overlay
Hello, I recently installed the Magick.NET library for an application I am developing for high throughput image screening. one of the requirements is to be able to overlay multiple images (no more than...
View ArticleNew Post: Image Overlay
Your third attempt was almost right. With the images you emailed me I was able to produce the expected result:using (MagickImage first = new MagickImage("Source_img1.tif")) { MagickImage second = new...
View ArticleNew Post: image.Extent how to get transparent background
I am experimenting with Magick.NET, and am trying to get a transparent background. I can get this to work with code like the following, but I think this is a hack, and not the correct way to do this....
View ArticleNew Post: Why not set background when convert SVG to PNG?
Hi all. I not set background when convert image from SVG to PNG? Why? Thanhks.
View ArticleNew Post: image.Extent how to get transparent background
You actually found a bug, it's not a feature. It should be white instead of transparent. This will be fixed in the next release. You can do this:using (MagickImage image = new MagickImage(sPath +...
View ArticleNew Post: Why not set background when convert SVG to PNG?
Can you please post some example code so I can see what you are trying to do? Are you using the build in SVG engine of ImageMagick or are you using something like InkScape as a delegate?
View ArticleNew Post: Image Overlay
Hi Again, Thank you so much. It worked beautifully :) Best, rob
View ArticleNew Post: image.Extent how to get transparent background
Thank you. Your efforts are much appreciated. This is a great project you are doing!Do you take donations anywhere?Tom McEwenAnchorCove Publishing, Inc.www.anchorcovepublishing.com[email removed]Phone:...
View ArticleNew Post: image.Extent how to get transparent background
Thank you. Your efforts are much appreciated. This is a great project you are doing!Do you take donations anywhere?Tom McEwenAnchorCove Publishing, Inc.www.anchorcovepublishing.com[email removed]Phone:...
View Article