]> granicus.if.org Git - imagemagick/blob - www/jp2.html
(no commit message)
[imagemagick] / www / jp2.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: JP2 Encoding Options</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="jp2, encoding, options, 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-2012 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="search.html">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's JPEG-2000 image formats, JP2 and JPC, accept a plethora of encoding options as detailed below.  As an example, suppose you are interested in these options:</p>
60
61 <ul>
62 <li>code blocks are 64 samples in width and 32 samples in height</li>
63 <li>no multicomponent transform</li>
64 <li>4 resolution levels for each component</li>
65 <li>compression is lossy at 64:1</li>
66 </ul>
67
68 <p>Use this command to convert a JPEG-2000 image to the PNG image format:</p>
69
70 <pre>
71 convert wizard.jp2 wizard.png
72 </pre>
73
74 <p>Here we extract an area from the image:</p>
75
76 <pre>
77 convert 'wizard.jp2[640x480+0+0]' wizard.png
78 </pre>
79
80 <p>Extract a particular tile from the image:</p>
81
82 <pre>
83 convert 'wizard.jp2[2]' wizard.png
84 </pre>
85
86 <p>Specify a subsampling factor:</p>
87
88 <pre>
89 convert wizard.png -colorspace YUV -sampling-factor 2,2 wizard.jp2
90 </pre>
91
92 <p>Save a tiled JPEG-2000 image:</p>
93
94 <pre>
95 convert wizard.png 'wizard.png[512x512]'
96 </pre>
97
98 <p>Write a digital Cinema 4K profile compliant codestream:</p>
99
100 <pre>
101 convert wizard.png -resize 4096x2160! -depth 12 wizard.jp2
102 </pre>
103
104 <p>Here is a complete list of JPEG-2000 decoding options:</p>
105
106 <div class="table-responsive">
107 <table class="table table-condensed table-striped">
108   <tr>
109     <td>jp2:layer-number=<var>x</var></td>
110     <td>set the maximum number of quality layers to decode.</td>
111   </tr>
112   <tr>
113     <td>jp2:reduce-factor=<var>x</var></td>
114     <td>set the number of highest resolution levels to be discarded.</td>
115   </tr>
116 </table></div>
117
118 <p>Here is a complete list of JPEG-2000 encoding options:</p>
119
120 <div class="table-responsive">
121 <table class="table table-condensed table-striped">
122   <tr>
123     <dt>jp2:number-resolutions=<var>x</var></dt>
124     <dd>number of resolutions to encode.</dd>
125   </tr>
126   <tr>
127     <td>jp2:quality=<var>x</var>,<var>x</var>,...</td>
128     <td>set the quality layer PSNR, given in dB. The order is from left to right in ascending order. The default is a single lossless quality layer.</td>
129   </tr>
130   <tr>
131     <td>jp2:rate=<var>x</var>,<var>x</var>,...</td>
132     <td>the compression ratio values. Each value is a factor of compression, thus 20 means 20 times compressed. The order is from left to right in descending order. A final lossless quality layer is signified by the value 1. The default is a single lossless quality layer.</td>
133   </tr>
134   <tr>
135     <td>jp2:progression-order=<var>x</var></td>
136     <td>choose from LRCP, RLCP, RPCL, PCRL or CPRL.</td>
137   </tr>
138 </table></div>
139 </div>
140   <footer class="magick-footer">
141     <div class="magick-nav-item navbar-left">
142       <a href="support.html">Donations</a>
143     </div>
144     <div class="magick-nav-item navbar-right">
145       <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../index.html"></a>
146       <noscript>
147         <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank">
148         <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
149       </noscript>
150     </div>
151     <p><a href="sitemap.html">Sitemap</a> •
152     <a href="links.html">Related</a> •
153     <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Image Studio</a> •
154     <a href="http://jqmagick.imagemagick.org/">JqMagick</a> •
155     <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a>
156 </p>
157     <p><a href="jp2.html#">Back to top</a> •
158     <a href="contact.html">Contact Us</a></p>
159   </footer>
160 </div><!-- /.container -->
161
162   <script src="https://localhost/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
163   <script src="../js/bootstrap.min.js"></script>
164   <script type="text/javascript">
165     /*  */
166     (function() {
167         var s = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0];
168         s.type = 'text/javascript';
169         s.async = true;
170         s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
171         t.parentNode.insertBefore(s, t);
172     })();
173     /*  */
174   </script>
175 </div>
176 </body>
177 </html>