1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>resource - Minitor or Limit Resource Consumption</title>
<link rel="stylesheet" type="text/css" href="../magick.css">
</head>
<body marginheight="1" marginwidth="1" topmargin="1" leftmargin="1">
<a name="top"></a>
<table border="0" cellpadding="0" cellspacing="0" summary="Masthead" width="100%">
<tbody>
<tr>
<td bgcolor="#003399" width="25%" height="118" background="../../images/background.gif"><a href="http://www.imagemagick.org/"><img src="../../images/script.gif" width="278" height="118" border="0" alt="" /></a></td>
<td bgcolor="#003399" width="60%" height="118" background="../../images/background.gif"><a href="http://www.networkeleven.com/direct.php?magick_all"><img src="../../images/promote.png" border="0" width="186" height="52" vspace="29" alt="Powered by NetworkEleven" /></a></td>
<td bgcolor="#003399" width="114" height="118" align="right"><img src="../../images/sprite.png" width="114" height="118" alt="" /></td>
<td bgcolor="#003399" width="114" height="118" align="right"><a href="http://www.imagemagick.net"><img src="../../images/logo.png" width="114" height="118" border="0" alt="ImageMagick logo" /></a></td>
</tr></tbody></table>
<table align="left" border="0" cellpadding="2" cellspacing="2" summary="Navigation buttons" width="20%">
<tr>
<td>
<form target="_self" action="../../index.html"><input type="submit" title="ImageMagick Home" value=" Home" style="background-color: #1947A3; background-image:url('../../../images/background.gif'); color:#fbc713; font-weight:bold"></form></td>
<td>
<form target="_self" action="../../www/apis.html"><input type="submit" title="ImageMagick API" value=" API " style="background-color: #1947A3; background-image:url('../../../images/background.gif'); color:#fbc713; font-weight:bold"></form></td>
<td>
<form target="_self" action="../../www/archives.html"><input type="submit" title="ImageMagick Download" value="Download" style="background-color: #1947A3; background-image:url('../../../images/background.gif'); color:#fbc713; font-weight:bold"></form></td></tr></table>
<div align="right" style="margin-top:3px; padding-right:4px">
<form action="http://studio.imagemagick.org/Sage/scripts/Sage.cgi"><input type="TEXT" name="query" size="32" maxlength="255"> <input type="SUBMIT" name="sa" value="Search" style="background-color: #1947A3; background-image:url('../../../images/background.gif'); bgcolor:#003399; color:#fbc713; font-weight:bold"></form></div>
<table align="left" border="0" cellpadding="10" cellspacing="0" style="margin-top:-17px" width="100%">
<tr>
<td>
<P><a name="__index__"></a></P>
<!-- INDEX BEGIN -->
<ul>
<li><a href="#name">NAME</a></li>
<li><a href="#synopsis">SYNOPSIS</a></li>
<li><a href="#function_descriptions">FUNCTION DESCRIPTIONS</a></li>
<ul>
<li><a href="#acquiremagickresource">AcquireMagickResource</a></li>
<li><a href="#acquireuniquefileresource">AcquireUniqueFileResource</a></li>
<li><a href="#getmagickresource">GetMagickResource</a></li>
<li><a href="#listmagickresourceinfo">ListMagickResourceInfo</a></li>
<li><a href="#relinquishmagickresource">RelinquishMagickResource</a></li>
<li><a href="#relinquishuniquefileresource">RelinquishUniqueFileResource</a></li>
<li><a href="#setmagickresourcelimit">SetMagickResourceLimit</a></li>
</ul>
</ul>
<!-- INDEX END -->
<hr />
<P>
</P>
<h1><a name="name">NAME</a></h1>
<P>resource - Minitor or Limit Resource Consumption</P>
<P>
</P>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<P>MagickBooleanType <strong>AcquireMagickResource</strong>( const ResourceType type, const MagickSizeType size );</P>
<P>int <strong>AcquireUniqueFileResource</strong>( char *path );</P>
<P>unsigned long <strong>GetMagickResource</strong>( const ResourceType type );</P>
<P>MagickBooleanType <strong>ListMagickResourceInfo</strong>( FILE *file, ExceptionInfo *exception );</P>
<P>void <strong>RelinquishMagickResource</strong>( const ResourceType type, const MagickSizeType size );</P>
<P>MagickBooleanType <strong>RelinquishUniqueFileResource</strong>( const char *path );</P>
<P>MagickBooleanType <strong>SetMagickResourceLimit</strong>( const ResourceType type, const unsigned long limit );</P>
<P>
</P>
<hr />
<h1><a name="function_descriptions">FUNCTION DESCRIPTIONS</a></h1>
<P>
</P>
<h2><a name="acquiremagickresource">AcquireMagickResource</a></h2>
<blockquote>AcquireMagickResource() acquires resources of the specified type. MagickTrue is returned if the specified resource is available otherwise MagickFalse. </blockquote><blockquote>The format of the AcquireMagickResource() method is: </blockquote><blockquote>MagickBooleanType AcquireMagickResource ( const <A HREF="types.html#ResourceType">ResourceType</A> type, const MagickSizeType size ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong><a name="item_o_type_3a">type:</a></strong><br />
</dt>
<DD>
The type of resource.
</dd>
<P></P>
<dt><strong><a name="item_o_size_3a">size:</a></strong><br />
</dt>
<DD>
The number of bytes needed from for this resource.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="acquireuniquefileresource">AcquireUniqueFileResource</a></h2>
<blockquote>AcquireUniqueFileResource() returns a unique file name, and returns a file descriptor for the file open for reading and writing. </blockquote><blockquote>The format of the AcquireUniqueFileResource() method is: </blockquote><blockquote>int AcquireUniqueFileResource ( char *path ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong><a name="item_o_path_3a">path:</a></strong><br />
</dt>
<DD>
Specifies a pointer to an array of characters. The unique path name is returned in this array.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="getmagickresource">GetMagickResource</a></h2>
<blockquote>GetMagickResource() returns the the specified resource in megabytes. </blockquote><blockquote>The format of the GetMagickResource() method is: </blockquote><blockquote>unsigned long GetMagickResource ( const <A HREF="types.html#ResourceType">ResourceType</A> type ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong>type:</strong><br />
</dt>
<DD>
The type of resource.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="listmagickresourceinfo">ListMagickResourceInfo</a></h2>
<blockquote>ListMagickResourceInfo() lists the resource info to a file. </blockquote><P>The format of the ListMagickResourceInfo method is:</P>
<blockquote>MagickBooleanType ListMagickResourceInfo ( FILE *file, <A HREF="types.html#ExceptionInfo">ExceptionInfo</A> *exception ); </blockquote><P>A description of each parameter follows.</P>
<dl>
<dt><strong><a name="item_o_file_3a">file:</a></strong><br />
</dt>
<DD>
An pointer to a FILE.
</dd>
<P></P>
<dt><strong><a name="item_o_exception_3a">exception:</a></strong><br />
</dt>
<DD>
Return any errors or warnings in this structure.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="relinquishmagickresource">RelinquishMagickResource</a></h2>
<blockquote>RelinquishMagickResource() relinquishes resources of the specified type. </blockquote><blockquote>The format of the RelinquishMagickResource() method is: </blockquote><blockquote>void RelinquishMagickResource ( const <A HREF="types.html#ResourceType">ResourceType</A> type, const MagickSizeType size ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong>type:</strong><br />
</dt>
<DD>
The type of resource.
</dd>
<P></P>
<dt><strong>size:</strong><br />
</dt>
<DD>
The size of the resource.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="relinquishuniquefileresource">RelinquishUniqueFileResource</a></h2>
<blockquote>RelinquishUniqueFileResource() relinquishes a unique file resource. </blockquote><blockquote>The format of the RelinquishUniqueFileResource() method is: </blockquote><blockquote>MagickBooleanType RelinquishUniqueFileResource ( const char *path ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong><a name="item_o_name_3a">name:</a></strong><br />
</dt>
<DD>
the name of the temporary resource.
</dd>
<P></P></dl>
<P>
</P>
<h2><a name="setmagickresourcelimit">SetMagickResourceLimit</a></h2>
<blockquote>SetMagickResourceLimit() sets the limit for a particular resource in megabytes. </blockquote><blockquote>The format of the SetMagickResourceLimit() method is: </blockquote><blockquote>MagickBooleanType SetMagickResourceLimit ( const <A HREF="types.html#ResourceType">ResourceType</A> type, const unsigned long limit ); </blockquote><P>A description of each parameter follows:</P>
<dl>
<dt><strong>type:</strong><br />
</dt>
<DD>
The type of resource.
</dd>
<P></P>
<dt><strong><a name="item_o_limit_3a">limit:</a></strong><br />
</dt>
<DD>
The maximum limit for the resource.
</dd>
</dl>
<HR>
<a href="#top"><img src="../../../images/top.gif" border=0 width=42 height=42 align="right" alt="Top of page"></a>
<form action="http://studio.imagemagick.org/magick/" style="margin-top:5px">
<input type="submit" title="Help!" value="Help!" style="background-image:url('../../../images/background.gif'); color:#fbc713; font-weight:bold">
<small>"Image manipulation software that works like magick"</small>
</form></td>
</tr></table>
</body>
</html>
|