New Post: Xml files location
The initialize folder should contain the xml files. Where are you copying the files from?
View ArticleNew Post: Xml files location
"ImageMagick\Q16\bin\v4.0\x64" containts only dll files. I am copying from "ImageMagick\xml" folder.
View ArticleNew Post: Xml files location
Are you using NuGet? The NuGet package should include a .targets file in your project. When you build your project an ImageMagick directory will be created in your bin directory and the dll/xml files...
View ArticleNew Post: Convert a pdf page to image
Can you also post the stacktrace? I don't have enough information to investigate the issue.
View ArticleNew Post: Xml files location
Thanks for your response. I am not using nuget package, i have checked out project from svn repository and manually built it. This configuration(copying xml files) can be a post-build event. What do...
View ArticleNew Post: Xml files location
You could include a .targets file that copies the files in your own project. An example can be found in the Publish\Magick.NET.targets.
View ArticleNew Post: Xml files location
Thank you, i will try it. By the way great job, i really like this project. Please keep on developing:)
View ArticleNew Post: Image conversion in web app
You can use Magick.NET in a .NET 2.0 web application. But you cannot use Magick.NET.Web.dll because it uses 'PreApplicationStartMethodAttribute' which is only available since .NET 4.0. You need to call...
View ArticleNew Post: Image conversion in web app
Hello, Is there another way to remove black border, since I have a random width and height coming from scanner and i can't define where the black border is in the picture. Is there a way to know the...
View ArticleNew Post: GUI for Magick.NET
I want to know if there is any GUI implementation of Magick.NET. My project needs to implement annotation/editing of images in a GUI. Thanks.
View ArticleNew Post: PDF->PNG conversion failing
I have a simple app that converts a few thousand PDF files to images. When I run a process using the imagemagick installed on my machine, everything is fine. When I try to use Magick.net I get the...
View ArticleNew Post: Web Application Difficulties
I am having some difficulty using the MagickNet library in a web application. I am using the x86 libraries on my development PC. I am publishing the code to an IIS Application pool with "Enable 32-bit...
View ArticleNew Post: Web Application Difficulties
I realized that the ImageMagick folder wasn't getting deployed. I added this reference to the project, but now it throws a System.BadImageFormatException. I copied the 64-bit DLLs to my bin folder. I...
View ArticleNew Post: Web Application Difficulties
You are getting the BadImageFormatException because you are trying to load a x86 dll in a x64 application pool. Did you also replace the files in the ImageMagick directory? It seems that there is still...
View ArticleNew Post: Image conversion in web app
Can you share two examples of an image with a black border? It seems that you have to check the color of the pixels of the image. Here is an example of how you can access them:using (MagickImage image...
View ArticleNew Post: GUI for Magick.NET
I basically need to perform scribble operations on the images. Is there any way that you can suggest to implement it using magick.net or any alternate open source library?? Thanks.
View ArticleNew Post: Image conversion in web app
Hello, My images can have random black borders and even not black it may be gray following to the scanners. your provided example can show me the width and height for the black border? Sorry but I...
View ArticleNew Post: PDF->PNG conversion failing
Take a look at the url below and see if that helps you:https://magick.codeplex.com/workitem/963
View Article