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