]> granicus.if.org Git - imagemagick/blob - www/exception.html
(no commit message)
[imagemagick] / www / exception.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html lang="en">
3 <head>
4   <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">
7   <title>ImageMagick: Exceptions</title>
8   <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="exceptions, 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-2015 ImageMagick Studio LLC">
23   <meta name="distribution" content="Global">
24   <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
25   <link rel="icon" href="../images/wand.png">
26   <link rel="shortcut icon" href="../images/wand.ico" type="images/x-icon">
27   <link rel="stylesheet" href="css/bootstrap.min.css">
28   <link rel="stylesheet" href="css/magick.css">
29 </head>
30
31 <body>
32 <div class="main">
33 <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">
46       <a class="magick-nav-item " href="../index.html">Home</a>
47       <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>
51       <a class="magick-nav-item" href="http://www.imagemagick.org/discourse-server/">Community</a>
52       <a class="magick-nav-item navbar-right " href="http://www.imagemagick.org/script/search.php">Search</a>
53     </nav>
54   </div>
55 </div>
56 <div class="container">
57 <div class="magick-header">
58
59 <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>
60
61 <table class="table table-condensed table-striped">
62   <caption>ImageMagick Error and Warning Codes</caption>
63   <tbody>
64   <tr>
65     <th>Domain</th>
66     <th>Description</th>
67     <th>Warning</th>
68     <th>Error</th>
69     <th>Fatal Error</th>
70   </tr>
71
72   <tr>
73     <td>Success</td>
74     <td>the command or algorithm completed successfully without complaint</td>
75     <td>0</td>
76     <td>0</td>
77     <td>0</td>
78   </tr>
79
80   <tr>
81     <td>Resource Limit</td>
82     <td>a program resource is exhausted (e.g. not enough memory)</td>
83     <td>300</td>
84     <td>400</td>
85     <td>700</td>
86   </tr>
87
88   <tr>
89     <td>Type</td>
90     <td>A font is unavailable; a substitution may have occurred</td>
91     <td>305</td>
92     <td>405</td>
93     <td>705</td>
94   </tr>
95
96   <tr>
97     <td>Option</td>
98     <td>a command-line option was malformed</td>
99     <td>310</td>
100     <td>410</td>
101     <td>710</td>
102   </tr>
103
104   <tr>
105     <td>Delegate</td>
106     <td>an ImageMagick <i>delegate</i> failed to complete</td>
107     <td>315</td>
108     <td>415</td>
109     <td>715</td>
110   </tr>
111
112   <tr>
113     <td>Missing Delegate</td>
114     <td>the image type can not be read or written because the appropriate <i>Delegate</i> is missing</td>
115     <td>320</td>
116     <td>420</td>
117     <td>720</td>
118   </tr>
119
120   <tr>
121     <td>Corrupt Image</td>
122     <td>the image file may be corrupt</td>
123     <td>325</td>
124     <td>425</td>
125     <td>725</td>
126   </tr>
127
128   <tr>
129     <td>FileOpen</td>
130     <td>the image file could not be opened for reading or writing</td>
131     <td>330</td>
132     <td>430</td>
133     <td>730</td>
134   </tr>
135
136   <tr>
137     <td>Blob</td>
138     <td>a binary large object could not be allocated, read, or written</td>
139     <td>335</td>
140     <td>435</td>
141     <td>735</td>
142   </tr>
143
144   <tr>
145     <td>Stream</td>
146     <td>there was a problem reading or writing from a stream</td>
147     <td>340</td>
148     <td>440</td>
149     <td>740</td>
150   </tr>
151
152   <tr>
153     <td>Cache</td>
154     <td>pixels could not be read or written to the pixel cache</td>
155     <td>345</td>
156     <td>445</td>
157     <td>745</td>
158   </tr>
159
160   <tr>
161     <td>Coder</td>
162     <td>there was a problem with an image coder</td>
163     <td>350</td>
164     <td>450</td>
165     <td>750</td>
166   </tr>
167
168   <tr>
169     <td>Module</td>
170     <td>there was a problem with an image module</td>
171     <td>355</td>
172     <td>455</td>
173     <td>755</td>
174   </tr>
175
176   <tr>
177     <td>Draw</td>
178     <td>a drawing operation failed</td>
179     <td>360</td>
180     <td>460</td>
181     <td>760</td>
182   </tr>
183
184   <tr>
185     <td>Image</td>
186     <td>the operation could not complete due to an incompatible image</td>
187     <td>365</td>
188     <td>465</td>
189     <td>765</td>
190   </tr>
191
192   <tr>
193     <td>Wand</td>
194     <td>there was a problem specific to the MagickWand API</td>
195     <td>370</td>
196     <td>470</td>
197     <td>770</td>
198   </tr>
199
200   <tr>
201     <td>Random</td>
202     <td>there is a problem generating a true or pseudo-random number</td>
203     <td>375</td>
204     <td>475</td>
205     <td>775</td>
206   </tr>
207
208   <tr>
209     <td>XServer</td>
210     <td>an X resource is unavailable</td>
211     <td>380</td>
212     <td>480</td>
213     <td>780</td>
214   </tr>
215
216   <tr>
217     <td>Monitor</td>
218     <td>there was a problem activating the progress monitor</td>
219     <td>385</td>
220     <td>485</td>
221     <td>785</td>
222   </tr>
223
224   <tr>
225     <td>Registry</td>
226     <td>there was a problem getting or setting the registry</td>
227     <td>390</td>
228     <td>490</td>
229     <td>790</td>
230   </tr>
231
232   <tr>
233     <td>Configure</td>
234     <td>there was a problem getting a configuration file</td>
235     <td>395</td>
236     <td>495</td>
237     <td>795</td>
238   </tr>
239
240   <tr>
241     <td>Policy</td>
242     <td>a policy denies access to a delegate, coder, filter, path, or resource.</td>
243     <td>399</td>
244     <td>499</td>
245     <td>799</td>
246   </tr>
247   </tbody>
248 </table>
249
250 </div>
251   <footer class="magick-footer">
252     <div class="magick-nav-item navbar-left">
253       <a href="support.html">Donate</a>
254     </div>
255     <p><a href="sitemap.html">Sitemap</a> •
256     <a href="links.html">Related</a> •
257     <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Image Studio</a> •
258     <a href="http://jqmagick.imagemagick.org/">JqMagick</a> •
259     <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a>
260 </p>
261     <p><a href="exception.html#">Back to top</a> •
262     <a href="http://www.imagemagick.org/script/contact.php">Contact Us</a></p>
263     <p class="small">©  1999-2015 ImageMagick Studio LLC</p>
264   </footer>
265 </div><!-- /.container -->
266
267   <script src="https://localhost/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
268   <script src="../js/bootstrap.min.js"></script>
269   <script type="text/javascript">
270     /*  */
271     (function() {
272         var s = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0];
273         s.type = 'text/javascript';
274         s.async = true;
275         s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
276         t.parentNode.insertBefore(s, t);
277     })();
278     /*  */
279   </script>
280 </div>
281 </body>
282 </html>