blob: 424e06efe37b3e8729c4841bfc5955234fc8270f [file] [log] [blame]
cristyd2432012015-05-04 23:15:15 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2<html lang="en">
cristyad41c0c2012-10-31 00:49:28 +00003<head>
cristyd2432012015-05-04 23:15:15 +00004 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
cristyffb69ed2010-12-25 00:06:48 +00007 <title>ImageMagick: Install the ImageMagickObject COM+ Component</title>
cristyd2432012015-05-04 23:15:15 +00008 <meta http-equiv="content-language" content="en-US">
9 <meta http-equiv="content-type" content="text/html; charset=utf-8">
10 <meta http-equiv="reply-to" content="magick-users@imagemagick.org">
11 <meta name="application-name" content="ImageMagick">
12 <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.">
13 <meta name="application-url" content="http://www.imagemagick.org">
14 <meta name="generator" content="PHP">
15 <meta name="keywords" content="install, the, imagemagickobject, com+, component, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert">
16 <meta name="rating" content="GENERAL">
17 <meta name="robots" content="INDEX, FOLLOW">
18 <meta name="generator" content="ImageMagick Studio LLC">
19 <meta name="author" content="ImageMagick Studio LLC">
20 <meta name="revisit-after" content="2 DAYS">
21 <meta name="resource-type" content="document">
22 <meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC">
23 <meta name="distribution" content="Global">
cristy44443b92015-05-05 00:06:07 +000024 <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
cristyd2432012015-05-04 23:15:15 +000025 <link rel="icon" href="../images/wand.png">
26 <link rel="shortcut icon" href="../images/wand.ico" type="images/x-icon">
cristy44443b92015-05-05 00:06:07 +000027 <link rel="stylesheet" href="css/bootstrap.min.css">
28 <link rel="stylesheet" href="css/magick.css">
cristyad41c0c2012-10-31 00:49:28 +000029</head>
30
cristyd2432012015-05-04 23:15:15 +000031<body>
cristyad41c0c2012-10-31 00:49:28 +000032<div class="main">
cristyd2432012015-05-04 23:15:15 +000033<div class="magick-masthead">
34 <div class="container">
35 <script type="text/javascript">
36 <!--
37 google_ad_client = "pub-3129977114552745";
38 google_ad_slot = "5439289906";
39 google_ad_width = 728;
40 google_ad_height = 90;
41 //-->
42 </script>
43 <center><script type="text/javascript" src="http://localhost/pagead/show_ads.js">
44 </script></center>
45 <nav class="magick-nav">
cristy44443b92015-05-05 00:06:07 +000046 <a class="magick-nav-item " href="../index.html">Home</a>
cristyd2432012015-05-04 23:15:15 +000047 <a class="magick-nav-item " href="binary-releases.html">Downloads</a>
48 <a class="magick-nav-item " href="command-line-tools.html">Tools</a>
49 <a class="magick-nav-item " href="command-line-options.html">Options</a>
50 <a class="magick-nav-item " href="api.html">Development</a>
cristy44443b92015-05-05 00:06:07 +000051 <a class="magick-nav-item" href="http://www.imagemagick.org/discourse-server/">Community</a>
cristyd2432012015-05-04 23:15:15 +000052 <a class="magick-nav-item navbar-right " href="search.html">Search</a>
53 </nav>
54 </div>
55</div>
56<div class="container">
57<div class="magick-header">
58<p class="text-center"><a href="index.html#build">Build ImageMagickObject From Source</a></p>
cristyad41c0c2012-10-31 00:49:28 +000059
cristyd2432012015-05-04 23:15:15 +000060<p class="lead magick-description">The ImageMagickObject is a COM+ compatible component that can be invoked from any language capable of using COM objects. The intended use is for Windows Scripting Host VBS scripts and Visual Basic, but it is also available from to C++, ASP, and other languages like Delphi, Perl and PHP.</p>
cristy3ed852e2009-09-05 21:47:34 +000061
cristy751980d2012-06-03 23:18:35 +000062<p>The ImageMagickObject COM+ component provides access to the <a href="compare.html">compare</a>, <a href="convert.html">convert</a>, <a href="composite.html">composite</a>, <a href="mogrify.html">mogrify</a>, <a href="identify.html">identify</a>, <a href="montage.html">montage</a>, and <a href="stream.html">stream</a> tools, efficiently executing them as part of your process, rather than as external programs. The way you use it is exactly the same. You pass it a list of strings including filenames and various options and it does the job. In fact, you can take any existing batch scripts that use the command line tools and translate them into the equivalent calls to the COM+ object in a matter of minutes. Beyond that, there is also a way to pass in and retrieve images in memory in the form of standard smart arrays (byte arrays). Samples are provided, to show both the simple and more elaborate forms of access.</p>
cristy3ed852e2009-09-05 21:47:34 +000063
cristy751980d2012-06-03 23:18:35 +000064<p>ImageMagick provides a statically-built ImageMagick object as part of its <a href="binary-releases.html#windows">Windows installation package</a>. When this package is installed, ImageMagickObject and its sample programs are installed to this path:</p>
cristy3ed852e2009-09-05 21:47:34 +000065
cristyd2432012015-05-04 23:15:15 +000066<pre>
67 c:\Program Files\ImageMagick-6.9.1-Q16\ImageMagickObject
cristy3ed852e2009-09-05 21:47:34 +000068</pre>
69
cristy8ee7f242013-06-20 16:08:44 +000070<p>The ImageMagickObject is registered if the checkbox, <code>Register ImageMagickObject</code>, is checked at install time.</p>
cristy3ed852e2009-09-05 21:47:34 +000071
72<p>To execute the sample program from the Windows Command Shell, type:</p>
73
cristyd2432012015-05-04 23:15:15 +000074<pre>
75cscript SimpleTest.vbs
76</pre>
77
cristy751980d2012-06-03 23:18:35 +000078<p>Since the ImageMagick utility command line parsers are incorporated within ImageMagickObject, please refer to the <a href="command-line-tools.html">command-line tools</a> discussion to learn how to use it. The sample VBS scripts show how the object should be called and used and have lots of comments.</p>
cristy3ed852e2009-09-05 21:47:34 +000079
cristy8ee7f242013-06-20 16:08:44 +000080<p>C++ programmers should have a look at the <code>MagickCMD.cpp</code> command line utility for an example of how to call the object from C++. The object requires a variable size list of BSTR's to emulate the command line argc, argv style calling conventions of the COM component which is more complex in C++ then in VBS or VB.</p>
cristy3ed852e2009-09-05 21:47:34 +000081
cristy8ee7f242013-06-20 16:08:44 +000082<p>MagickCMD is a C++ sample, but it also serves as a replacement for all the other command line utilities in most applications. Instead of using <code>convert xxxx yyyy</code> you can use <code>MagickCMD convert xxxx yyyy</code> instead. MagickCMD calls the COM object to accomplish the designated task. This small tight combination replaces the entire usual binary distribution in just a few mebibytes.</p>
cristy3ed852e2009-09-05 21:47:34 +000083
cristyd2432012015-05-04 23:15:15 +000084<h2 class="magick-header"><a id="build"></a>Build ImageMagickObject From Source</h2>
cristy3ed852e2009-09-05 21:47:34 +000085
cristy8ee7f242013-06-20 16:08:44 +000086<p>The source code for ImageMagickObject is available from the ImageMagick <a href="subversion.html">subversion</a> repository, or as part of the <a href="install-source.html#windows">Windows source</a> distribution. Once the source code has been retrieved and extracted, the source for ImageMagickObject is the directory <code>ImageMagick\contrib\win32\ATL7ImageMagickObject</code>, however, ImageMagick itself must be built using the static-multithread (VisualStaticMT) build configuration. Building ImageMagickObject requires Microsoft Visual C++ 7.0 as delivered with Microsoft's Visual Studio .NET package. See the <a href="install-source.html#windows">Windows compilation instructions</a> to get ImageMagick itself built before building the ImageMagick COM+ component.</p>
cristy3ed852e2009-09-05 21:47:34 +000087
88<p>Once the VisualStaticMT project has been built, build the ImageMagickObject with this procedure:</p>
89
cristyd2432012015-05-04 23:15:15 +000090<pre>
91cd ImageMagick/contrib/win32/ATL7/ImageMagickObject
92BuildImageMagickObject release
93</pre>
94
cristy8ee7f242013-06-20 16:08:44 +000095<p>Here, we assume that the VisualStaticMT project has been built using the release setting for an optimized build. If the debug setting was used for a debug build, specify the argument <code>debug</code>; instead.</p>
cristy3ed852e2009-09-05 21:47:34 +000096
97<p>To register the DLL as a COM+ server, type</p>
98
cristyd2432012015-05-04 23:15:15 +000099<pre>
100regsvr32 /c /s ImageMagickObject.dll
101</pre>
102
cristy3ed852e2009-09-05 21:47:34 +0000103<p>To unregister the DLL, type</p>
104
cristyd2432012015-05-04 23:15:15 +0000105<pre>
106regsvr32 /u /s ImageMagickObject.dll
107</pre>
108
cristy3ed852e2009-09-05 21:47:34 +0000109<p>Use MagickCMD to exercise ImageMagickObject to verify that it is working properly.</p>
110
111</div>
cristyd2432012015-05-04 23:15:15 +0000112 <footer class="magick-footer">
113 <div class="magick-nav-item navbar-left">
cristy85893d32015-05-06 13:44:09 +0000114 <a href="support.html">Donate</a>
cristyd2432012015-05-04 23:15:15 +0000115 </div>
116 <div class="magick-nav-item navbar-right">
cristy44443b92015-05-05 00:06:07 +0000117 <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../index.html"></a>
cristyd2432012015-05-04 23:15:15 +0000118 <noscript>
119 <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank">
120 <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
121 </noscript>
122 </div>
123 <p><a href="sitemap.html">Sitemap</a>
124 <a href="links.html">Related</a>
125 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Image Studio</a>
126 <a href="http://jqmagick.imagemagick.org/">JqMagick</a>
127 <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a>
128</p>
129 <p><a href="ImageMagickObject.html#">Back to top</a>
cristy85893d32015-05-06 13:44:09 +0000130 <a href="http://www.imagemagick.org/script/contact.php">Contact Us</a></p>
cristyd2432012015-05-04 23:15:15 +0000131 </footer>
132</div><!-- /.container -->
cristyad41c0c2012-10-31 00:49:28 +0000133
cristyd2432012015-05-04 23:15:15 +0000134 <script src="https://localhost/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
135 <script src="../js/bootstrap.min.js"></script>
136 <script type="text/javascript">
137 /* */
138 (function() {
139 var s = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0];
140 s.type = 'text/javascript';
141 s.async = true;
142 s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
143 t.parentNode.insertBefore(s, t);
144 })();
145 /* */
146 </script>
cristyad41c0c2012-10-31 00:49:28 +0000147</div>
cristyad41c0c2012-10-31 00:49:28 +0000148</body>
cristy5a367e42015-05-05 12:39:18 +0000149</html>