1 2 3 4 5 <!DOCTYPE html> 6 <html lang="en"> 7 <head> 8 <title>ImageMagick: MagickCore, C API for ImageMagick: Read or List Image formats</title> 9 <meta charset="utf-8" /> 10 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 11 <meta name="viewport" content="width=device-width, initial-scale=1" /> 12 <meta http-equiv="content-type" content="text/html; charset=utf-8"/> 13 <meta name="application-name" content="ImageMagick"/> 14 <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 Bzier curves."/> 15 <meta name="application-url" content="http://www.imagemagick.org"/> 16 <meta name="generator" content="PHP"/> 17 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, read, or, list, image, formats, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/> 18 <meta name="rating" content="GENERAL"/> 19 <meta name="robots" content="INDEX, FOLLOW"/> 20 <meta name="generator" content="ImageMagick Studio LLC"/> 21 <meta name="author" content="ImageMagick Studio LLC"/> 22 <meta name="revisit-after" content="2 DAYS"/> 23 <meta name="resource-type" content="document"/> 24 <meta name="copyright" content="Copyright (c) 1999-2016 ImageMagick Studio LLC"/> 25 <meta name="distribution" content="Global"/> 26 <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1"/> 27 <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" /> 28 <link rel="icon" href="../images/wand.png"/> 29 <link rel="shortcut icon" href="../images/wand.ico"/> 30 <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Roboto:900,400,400italic,700,700italic,300,300italic|Open+Sans:300italic,400italic,700italic,300,400,600,700"> 31 <link rel="stylesheet" href="../css/magick.html"/> 32 </head> 33 <body> 34 <div class="main"> 35 <div class="magick-masthead"> 36 <div class="container"> 37 <script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" 38 style="display:block" 39 data-ad-client="ca-pub-3129977114552745" 40 data-ad-slot="6345125851" 41 data-ad-format="auto"></ins> 42 <script> 43 (adsbygoogle = window.adsbygoogle || []).push({}); 44 </script> 45 <nav class="magick-nav"> 46 <a class="magick-nav-item " href="../index.html">Home</a> 47 <a class="magick-nav-item " href="../binary-releases.html">Download</a> 48 <a class="magick-nav-item " href="../command-line-tools.html">Tools</a> 49 <a class="magick-nav-item " href="../command-line-processing.html">Command-line</a> 50 <a class="magick-nav-item " href="../resources.html">Resources</a> 51 <a class="magick-nav-item " href="api.html">Develop</a> 52 <a class="magick-nav-item " href="http://www.imagemagick.org/script/search.php">Search</a> 53 <a class="magick-nav-item pull-right" href="https://www.imagemagick.org/discourse-server/">Community</a> 54 </nav> 55 </div> 56 </div> 57 <div class="container"> 58 <div class="magick-header"> 59 <p class="text-center"><a href="magick.html#AcquireMagickInfo">AcquireMagickInfo</a> • <a href="magick.html#GetMagickPrecision">GetMagickPrecision</a> • <a href="magick.html#IsMagickCoreInstantiated">IsMagickCoreInstantiated</a> • <a href="magick.html#MagickCoreGenesis">MagickCoreGenesis</a> • <a href="magick.html#MagickCoreTerminus">MagickCoreTerminus</a> • <a href="magick.html#SetMagickPrecision">SetMagickPrecision</a></p> 60 61 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="AcquireMagickInfo">AcquireMagickInfo</a></h2> 62 63 <p>AcquireMagickInfo() allocates a MagickInfo structure and initializes the members to default values.</p> 64 65 <p>The format of the AcquireMagickInfo method is:</p> 66 67 <pre class="text"> 68 MagickInfo *AcquireMagickInfo(const char *module, const char *name,) 69 </pre> 70 71 <p>A description of each parameter follows:</p> 72 73 <dd> 74 </dd> 75 76 <dd> </dd> 77 <dl class="dl-horizontal"> 78 <dt>module</dt> 79 <dd>a character string that represents the module associated with the MagickInfo structure. </dd> 80 81 <dd> </dd> 82 <dt>name</dt> 83 <dd>a character string that represents the image format associated with the MagickInfo structure. </dd> 84 85 <dd> </dd> 86 <dt>description</dt> 87 <dd>a character string that represents the image format associated with the MagickInfo structure. </dd> 88 89 <dd> </dd> 90 </dl> 91 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="GetMagickPrecision">GetMagickPrecision</a></h2> 92 93 <p>GetMagickPrecision() returns the maximum number of significant digits to be printed.</p> 94 95 <p>The format of the GetMagickPrecision method is:</p> 96 97 <pre class="text"> 98 int GetMagickPrecision(void) 99 </pre> 100 101 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="IsMagickCoreInstantiated">IsMagickCoreInstantiated</a></h2> 102 103 <p>IsMagickCoreInstantiated() returns MagickTrue if the ImageMagick environment is currently instantiated: MagickCoreGenesis() has been called but MagickDestroy() has not.</p> 104 105 <p>The format of the IsMagickCoreInstantiated method is:</p> 106 107 <pre class="text"> 108 MagickBooleanType IsMagickCoreInstantiated(void) 109 </pre> 110 111 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="MagickCoreGenesis">MagickCoreGenesis</a></h2> 112 113 <p>MagickCoreGenesis() initializes the MagickCore environment.</p> 114 115 <p>The format of the MagickCoreGenesis function is:</p> 116 117 <pre class="text"> 118 MagickCoreGenesis(const char *path, 119 const MagickBooleanType establish_signal_handlers) 120 </pre> 121 122 <p>A description of each parameter follows:</p> 123 124 <dd> 125 </dd> 126 127 <dd> </dd> 128 <dl class="dl-horizontal"> 129 <dt>path</dt> 130 <dd>the execution path of the current ImageMagick client. </dd> 131 132 <dd> </dd> 133 <dt>establish_signal_handlers</dt> 134 <dd>set to MagickTrue to use MagickCore's own signal handlers for common signals. </dd> 135 136 <dd> </dd> 137 </dl> 138 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="MagickCoreTerminus">MagickCoreTerminus</a></h2> 139 140 <p>MagickCoreTerminus() destroys the MagickCore environment.</p> 141 142 <p>The format of the MagickCoreTerminus function is:</p> 143 144 <pre class="text"> 145 MagickCoreTerminus(void) 146 </pre> 147 148 <h2><a href="http://www.imagemagick.org/api/MagickCore/magick_8c.html" id="SetMagickPrecision">SetMagickPrecision</a></h2> 149 150 <p>SetMagickPrecision() sets the maximum number of significant digits to be printed.</p> 151 152 <p>An input argument of 0 returns the current precision setting.</p> 153 154 <p>A negative value forces the precision to reset to a default value according to the environment variable "MAGICK_PRECISION", the current 'policy' configuration setting, or the default value of '6', in that order.</p> 155 156 <p>The format of the SetMagickPrecision method is:</p> 157 158 <pre class="text"> 159 int SetMagickPrecision(const int precision) 160 </pre> 161 162 <p>A description of each parameter follows:</p> 163 164 <dd> 165 </dd> 166 167 <dd> </dd> 168 <dl class="dl-horizontal"> 169 <dt>precision</dt> 170 <dd>set the maximum number of significant digits to be printed. </dd> 171 172 <dd> </dd> 173 </dl> 174 </div> 175 <footer class="magick-footer"> 176 <p><a href="../support.html">Donate</a> 177 <a href="../sitemap.html">Sitemap</a> 178 <a href="../links.html">Related</a> 179 <a href="../architecture.html">Architecture</a> 180 </p> 181 <p><a href="magick.html#">Back to top</a> 182 <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> 183 <a href="http://www.imagemagick.org/script/contact.php">Contact Us</a></p> 184 <p><small> 1999-2016 ImageMagick Studio LLC</small></p> 185 </footer> 186 </div><!-- /.container --> 187 188 <script src="https://localhost/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 189 <script src="../js/magick.html"></script> 190 </div> 191 </body> 192 </html> 193