Click here to Skip to main content
Licence CPOL
First Posted 14 Jan 2008
Views 34,752
Downloads 599
Bookmarked 14 times

ImageMagick Command Line Execution in ASP.NET

By arinhere | 4 Jun 2009
Perform ImageMagick operations in ASP.NET using command line
1 vote, 16.7%
1

2

3

4
5 votes, 83.3%
5
2.87/5 - 6 votes
μ 2.87, σa 2.86 [?]
magick_example.jpg magick_example2.jpg

Introduction

Some days ago, when I was going to do some image processing work, I stumbled over it. I needed to redraw an image using the data set by the user. Then I got ImageMagick. Now in ASP.NET, you will find very few articles or help for ImageMagick. Thanks to bubble2k for his excellent post on ImageMagick. But I decided to go for the command line execution of ImageMagick which is done easily in other web languages like PHP.

All the basic ImageMagick functionality that has been shown here is completely done by command line execution. 

Using the Code

Using the code is very easy. But you have to download the ImageMagick DLL version for windows from ImageMagick.org. Use the following link to download ImageMagick.

http://www.imagemagick.org/script/binary-releases.php#windows

Download ImageMagick-6.3.7-10-Q16-windows-dll.exe from the above link. Install the setup file. Your set up has been done. Now open the project using your editor.

***[Update] You can also check ImageMagick-6.5.3-Q16-windows.zip. It's the binary version of ImageMagick. Please follow the next * marked section for imagemagick binary use. 

Now here is the main matter that you should know to execute the EXE using command line:

Dim proc As New Diagnostics.Process()
proc.StartInfo.Arguments = fileargs
proc.StartInfo.FileName = Server.MapPath("MagickCMD.exe")
proc.StartInfo.UseShellExecute = False
proc.StartInfo.CreateNoWindow = True
proc.StartInfo.RedirectStandardOutput = False
proc.Start()

Now the MagicCMD.exe is the key which is executed every time using command line arguments. The command line arguments are passed using "fileargs" variable. Fileargs is written like this:

"convert " & Server.MapPath(source) & " -rotate 90 " & Server.MapPath(flname)

***[Update] Imagemagick Binary is more interesting. Download the imagemagick Binary from the above link. Unzip the folder, you can see that there are *.exe files for every possible imagemagick operators [like convert, compose, montage, etc.]. So you can use those operators directly in your application. Like to resize an image, you just need to write it in the following format:

convert -resize 500x200 C:\source.jpg C:\result.jpg
Then use the path in the following format. Check that here convert.exe has been used directly by the application.
Dim proc As New Diagnostics.Process()
proc.StartInfo.Arguments = fileargs
proc.StartInfo.FileName = Server.MapPath("magick\convert.exe")
proc.StartInfo.UseShellExecute = False
proc.StartInfo.CreateNoWindow = True
proc.StartInfo.RedirectStandardOutput = False
proc.Start()

The rest is the same. The command line only varies due to the various features. I have only used 12 features of imagemagick. There are many things that can be done. Visit the link below for more commands:

http://www.imagemagick.org/script/command-line-options.php#depth

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

arinhere

Web Developer

India India

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralImageMagick Command Line PinmemberCameron Williams5:17 26 May '11  
QuestionWithout installing Pinmembersachin.ims8:15 2 Jun '09  
AnswerRe: Without installing Pinmemberarinhere20:03 2 Jun '09  
QuestionRe: Without installing Pinmembersachin.ims5:21 3 Jun '09  
AnswerRe: Without installing Pinmemberarinhere22:52 3 Jun '09  
GeneralRe: Without installing Pinmembersachin.ims3:23 4 Jun '09  
GeneralRe: Without installing Pinmemberarinhere19:53 4 Jun '09  
GeneralResize Pinmemberalurv20:56 5 Mar '09  
GeneralRe: Resize Pinmemberarinhere21:28 5 Mar '09  
QuestionRe: Resize Pinmemberaakankshab3:11 20 Aug '10  
AnswerRe: Resize Pinmemberarinhere5:15 20 Aug '10  
QuestionNot creat image in folder "convimg" Pinmemberhuuchau841:10 4 Mar '09  
AnswerRe: Not creat image in folder "convimg" Pinmemberarinhere1:20 4 Mar '09  
GeneralRe: Not creat image in folder "convimg" Pinmemberhuuchau841:48 4 Mar '09  
GeneralRe: Not creat image in folder "convimg" Pinmemberarinhere1:53 4 Mar '09  
GeneralRe: Not creat image in folder "convimg" Pinmemberhuuchau8417:03 4 Mar '09  
GeneralUnable to run generate Thumbnails Pinmemberalurv0:12 3 Mar '09  
GeneralRe: Unable to run generate Thumbnails Pinmemberarinhere1:24 4 Mar '09  
QuestionRe: Unable to run generate Thumbnails Pinmemberaakankshab3:19 20 Aug '10  
AnswerRe: Unable to run generate Thumbnails Pinmemberarinhere5:42 20 Aug '10  
GeneralNot Working Fully with ASP.NET 2.0/VS2005 PinmemberGary Stafford7:06 23 Oct '08  
GeneralRe: Not Working Fully with ASP.NET 2.0/VS2005 Pinmemberarinhere7:14 23 Oct '08  
GeneralRe: Not Working Fully with ASP.NET 2.0/VS2005 PinmemberGary Stafford15:34 26 Oct '08  
QuestionExit code 4 when I try to use convert Pinmembernst8884:02 22 Sep '08  
AnswerRe: Exit code 4 when I try to use convert Pinmemberarinhere4:28 22 Sep '08  
Hello Nicki,
 
Can you provide the exact error you have got? Actually I didn't get what your problem is? So it will be better for me to suggest you something if you provide me the exact error you have got, and the steps you have followed starting from the installation of imagemagick.
 
Thanks and Regards - Arin
 
Arin
Mail: arinhere@gmail.com
http://blogs.msdn.com/coding4fun/archive/2008/04/16/8399645.aspx

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 5 Jun 2009
Article Copyright 2008 by arinhere
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid