]> granicus.if.org Git - imagemagick/blob - www/exception.html
Removed object file and modified .gitignore
[imagemagick] / www / exception.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4   
5     <title>ImageMagick: Exceptions</title>
6   <meta http-equiv="content-type" content="text/html; charset=utf-8">
7   <meta name="application-name" content="ImageMagick">
8   <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.">
9   <meta name="application-url" content="http://www.imagemagick.org">
10   <meta name="generator" content="PHP">
11   <meta name="keywords" content="exceptions, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert">
12   <meta name="rating" content="GENERAL">
13   <meta name="robots" content="INDEX, FOLLOW">
14   <meta name="generator" content="ImageMagick Studio LLC">
15   <meta name="author" content="ImageMagick Studio LLC">
16   <meta name="revisit-after" content="2 DAYS">
17   <meta name="resource-type" content="document">
18   <meta name="copyright" content="Copyright (c) 1999-2015 ImageMagick Studio LLC">
19   <meta name="distribution" content="Global">
20   <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
21   <link rel="icon" href="../images/wand.png">
22   <link rel="shortcut icon" href="../images/wand.ico">
23   <link rel="stylesheet" href="../css/magick.html">
24 </head>
25 <body>
26 <div class="main">
27 <div class="magick-masthead">
28   <div class="container">
29     <script async src="http://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3129977114552745" data-ad-slot="6345125851" data-ad-format="auto"></ins>
30     <script>
31     (adsbygoogle = window.adsbygoogle || []).push({});
32     </script>
33     <nav class="magick-nav">
34       <a class="magick-nav-item " href="../index.html">Home</a>
35       <a class="magick-nav-item " href="binary-releases.html">Download</a>
36       <a class="magick-nav-item " href="command-line-tools.html">Tools</a>
37       <a class="magick-nav-item " href="command-line-options.html">Options</a>
38       <a class="magick-nav-item " href="resources.html">Resources</a>
39       <a class="magick-nav-item " href="api.html">Develop</a>
40       <a class="magick-nav-item " href="http://nextgen.imagemagick.org/script/search.php">Search</a>
41       <a class="magick-nav-item pull-right" href="http://www.imagemagick.org/discourse-server/">Community</a>
42     </nav>
43   </div>
44 </div>
45 <div class="container">
46 <div class="magick-header">
47
48 <p class="lead magick-description">ImageMagick returns a status of 0 whenever a command or algorithm successfully complete without complaint.  A warning code generally is typically just a notice that something unusual occurred but the command or algorithm still completed and most likely the results are still usable.  An error means the command or algorithm could not complete as expected and any results are unreliable.  A fatal error means the command or algorithm could not complete and the process exits prematurely and no results are returned.</p>
49
50 <table class="table table-condensed table-striped">
51   <caption>ImageMagick Error and Warning Codes</caption>
52   <tbody>
53   <tr>
54     <th>Domain</th>
55     <th>Description</th>
56     <th>Warning</th>
57     <th>Error</th>
58     <th>Fatal Error</th>
59   </tr>
60
61   <tr>
62     <td>Success</td>
63     <td>the command or algorithm completed successfully without complaint</td>
64     <td>0</td>
65     <td>0</td>
66     <td>0</td>
67   </tr>
68
69   <tr>
70     <td>Resource Limit</td>
71     <td>a program resource is exhausted (e.g. not enough memory)</td>
72     <td>300</td>
73     <td>400</td>
74     <td>700</td>
75   </tr>
76
77   <tr>
78     <td>Type</td>
79     <td>A font is unavailable; a substitution may have occurred</td>
80     <td>305</td>
81     <td>405</td>
82     <td>705</td>
83   </tr>
84
85   <tr>
86     <td>Option</td>
87     <td>a command-line option was malformed</td>
88     <td>310</td>
89     <td>410</td>
90     <td>710</td>
91   </tr>
92
93   <tr>
94     <td>Delegate</td>
95     <td>an ImageMagick <i>delegate</i> failed to complete</td>
96     <td>315</td>
97     <td>415</td>
98     <td>715</td>
99   </tr>
100
101   <tr>
102     <td>Missing Delegate</td>
103     <td>the image type can not be read or written because the appropriate <i>Delegate</i> is missing</td>
104     <td>320</td>
105     <td>420</td>
106     <td>720</td>
107   </tr>
108
109   <tr>
110     <td>Corrupt Image</td>
111     <td>the image file may be corrupt</td>
112     <td>325</td>
113     <td>425</td>
114     <td>725</td>
115   </tr>
116
117   <tr>
118     <td>FileOpen</td>
119     <td>the image file could not be opened for reading or writing</td>
120     <td>330</td>
121     <td>430</td>
122     <td>730</td>
123   </tr>
124
125   <tr>
126     <td>Blob</td>
127     <td>a binary large object could not be allocated, read, or written</td>
128     <td>335</td>
129     <td>435</td>
130     <td>735</td>
131   </tr>
132
133   <tr>
134     <td>Stream</td>
135     <td>there was a problem reading or writing from a stream</td>
136     <td>340</td>
137     <td>440</td>
138     <td>740</td>
139   </tr>
140
141   <tr>
142     <td>Cache</td>
143     <td>pixels could not be read or written to the pixel cache</td>
144     <td>345</td>
145     <td>445</td>
146     <td>745</td>
147   </tr>
148
149   <tr>
150     <td>Coder</td>
151     <td>there was a problem with an image coder</td>
152     <td>350</td>
153     <td>450</td>
154     <td>750</td>
155   </tr>
156
157   <tr>
158     <td>Module</td>
159     <td>there was a problem with an image module</td>
160     <td>355</td>
161     <td>455</td>
162     <td>755</td>
163   </tr>
164
165   <tr>
166     <td>Draw</td>
167     <td>a drawing operation failed</td>
168     <td>360</td>
169     <td>460</td>
170     <td>760</td>
171   </tr>
172
173   <tr>
174     <td>Image</td>
175     <td>the operation could not complete due to an incompatible image</td>
176     <td>365</td>
177     <td>465</td>
178     <td>765</td>
179   </tr>
180
181   <tr>
182     <td>Wand</td>
183     <td>there was a problem specific to the MagickWand API</td>
184     <td>370</td>
185     <td>470</td>
186     <td>770</td>
187   </tr>
188
189   <tr>
190     <td>Random</td>
191     <td>there is a problem generating a true or pseudo-random number</td>
192     <td>375</td>
193     <td>475</td>
194     <td>775</td>
195   </tr>
196
197   <tr>
198     <td>XServer</td>
199     <td>an X resource is unavailable</td>
200     <td>380</td>
201     <td>480</td>
202     <td>780</td>
203   </tr>
204
205   <tr>
206     <td>Monitor</td>
207     <td>there was a problem activating the progress monitor</td>
208     <td>385</td>
209     <td>485</td>
210     <td>785</td>
211   </tr>
212
213   <tr>
214     <td>Registry</td>
215     <td>there was a problem getting or setting the registry</td>
216     <td>390</td>
217     <td>490</td>
218     <td>790</td>
219   </tr>
220
221   <tr>
222     <td>Configure</td>
223     <td>there was a problem getting a configuration file</td>
224     <td>395</td>
225     <td>495</td>
226     <td>795</td>
227   </tr>
228
229   <tr>
230     <td>Policy</td>
231     <td>a policy denies access to a delegate, coder, filter, path, or resource.</td>
232     <td>399</td>
233     <td>499</td>
234     <td>799</td>
235   </tr>
236   </tbody>
237 </table>
238
239 </div>
240   <footer class="magick-footer">
241     <p><a href="support.html">Donate</a> •
242      <a href="sitemap.html">Sitemap</a> •
243     <a href="links.html">Related</a> •
244     <a href="architecture.html">Architecture</a>
245 </p>
246     <p><a href="exception.html#">Back to top</a> •
247     <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
248     <a href="http://nextgen.imagemagick.org/script/contact.php">Contact Us</a></p>
249         <p><small>©  1999-2015 ImageMagick Studio LLC</small></p>
250   </footer>
251 </div><!-- /.container -->
252
253   <script src="http://nextgen.imagemagick.org/js/magick.html"></script>
254 </div>
255 </body>
256 </html>