Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8f1462e52e1797a02c97073eed0b7f92 > files > 786

python-docs-2.6.5-2.5mdv2010.2.i586.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>39.12. jpeg — Read and write JPEG files &mdash; Python v2.6.5 documentation</title>
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '2.6.5',
        COLLAPSE_MODINDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within Python v2.6.5 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="author" title="About these documents" href="../about.html" />
    <link rel="copyright" title="Copyright" href="../copyright.html" />
    <link rel="top" title="Python v2.6.5 documentation" href="../index.html" />
    <link rel="up" title="39. SGI IRIX Specific Services" href="sgi.html" />
    <link rel="next" title="40. SunOS Specific Services" href="sun.html" />
    <link rel="prev" title="39.11. imgfile — Support for SGI imglib files" href="imgfile.html" />
    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
 

  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../modindex.html" title="Global Module Index"
             accesskey="M">modules</a> |</li>
        <li class="right" >
          <a href="sun.html" title="40. SunOS Specific Services"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="imgfile.html" title="39.11. imgfile — Support for SGI imglib files"
             accesskey="P">previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="../index.html">Python v2.6.5 documentation</a> &raquo;</li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="sgi.html" accesskey="U">39. SGI IRIX Specific Services</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="module-jpeg">
<h1>39.12. <tt class="xref docutils literal"><span class="pre">jpeg</span></tt> &#8212; Read and write JPEG files<a class="headerlink" href="#module-jpeg" title="Permalink to this headline">¶</a></h1>
<p><em>Platforms: </em>IRIX</p>
<p class="deprecated">
<span class="versionmodified">Deprecated since version 2.6: </span>The <tt class="xref docutils literal"><span class="pre">jpeg</span></tt> module has been deprecated for removal in Python 3.0.</p>
<p id="index-406">The module <tt class="xref docutils literal"><span class="pre">jpeg</span></tt> provides access to the jpeg compressor and decompressor
written by the Independent JPEG Group (IJG). JPEG is a standard for compressing
pictures; it is defined in ISO 10918.  For details on JPEG or the Independent
JPEG Group software refer to the JPEG standard or the documentation provided
with the software.</p>
<p id="index-407">A portable interface to JPEG image files is available with the Python Imaging
Library (PIL) by Fredrik Lundh.  Information on PIL is available at
<a class="reference external" href="http://www.pythonware.com/products/pil/">http://www.pythonware.com/products/pil/</a>.</p>
<p>The <tt class="xref docutils literal"><span class="pre">jpeg</span></tt> module defines an exception and some functions.</p>
<dl class="exception">
<dt id="jpeg.error">
<em class="property">exception </em><tt class="descclassname">jpeg.</tt><tt class="descname">error</tt><a class="headerlink" href="#jpeg.error" title="Permalink to this definition">¶</a></dt>
<dd>Exception raised by <a title="jpeg.compress" class="reference internal" href="#jpeg.compress"><tt class="xref docutils literal"><span class="pre">compress()</span></tt></a> and <a title="jpeg.decompress" class="reference internal" href="#jpeg.decompress"><tt class="xref docutils literal"><span class="pre">decompress()</span></tt></a> in case of errors.</dd></dl>

<dl class="function">
<dt id="jpeg.compress">
<tt class="descclassname">jpeg.</tt><tt class="descname">compress</tt><big>(</big><em>data</em>, <em>w</em>, <em>h</em>, <em>b</em><big>)</big><a class="headerlink" href="#jpeg.compress" title="Permalink to this definition">¶</a></dt>
<dd><p id="index-408">Treat data as a pixmap of width <em>w</em> and height <em>h</em>, with <em>b</em> bytes per pixel.
The data is in SGI GL order, so the first pixel is in the lower-left corner.
This means that <tt class="xref docutils literal"><span class="pre">gl.lrectread()</span></tt> return data can immediately be passed to
<a title="jpeg.compress" class="reference internal" href="#jpeg.compress"><tt class="xref docutils literal"><span class="pre">compress()</span></tt></a>. Currently only 1 byte and 4 byte pixels are allowed, the
former being treated as greyscale and the latter as RGB color. <a title="jpeg.compress" class="reference internal" href="#jpeg.compress"><tt class="xref docutils literal"><span class="pre">compress()</span></tt></a>
returns a string that contains the compressed picture, in JFIF format.</p>
</dd></dl>

<dl class="function">
<dt id="jpeg.decompress">
<tt class="descclassname">jpeg.</tt><tt class="descname">decompress</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#jpeg.decompress" title="Permalink to this definition">¶</a></dt>
<dd><p id="index-409">Data is a string containing a picture in JFIF format. It returns a tuple
<tt class="docutils literal"><span class="pre">(data,</span> <span class="pre">width,</span> <span class="pre">height,</span> <span class="pre">bytesperpixel)</span></tt>.  Again, the data is suitable to pass
to <tt class="xref docutils literal"><span class="pre">gl.lrectwrite()</span></tt>.</p>
</dd></dl>

<dl class="function">
<dt id="jpeg.setoption">
<tt class="descclassname">jpeg.</tt><tt class="descname">setoption</tt><big>(</big><em>name</em>, <em>value</em><big>)</big><a class="headerlink" href="#jpeg.setoption" title="Permalink to this definition">¶</a></dt>
<dd><p>Set various options.  Subsequent <a title="jpeg.compress" class="reference internal" href="#jpeg.compress"><tt class="xref docutils literal"><span class="pre">compress()</span></tt></a> and <a title="jpeg.decompress" class="reference internal" href="#jpeg.decompress"><tt class="xref docutils literal"><span class="pre">decompress()</span></tt></a> calls
will use these options.  The following options are available:</p>
<table border="1" class="docutils">
<colgroup>
<col width="27%" />
<col width="73%" />
</colgroup>
<thead valign="bottom">
<tr><th class="head">Option</th>
<th class="head">Effect</th>
</tr>
</thead>
<tbody valign="top">
<tr><td><tt class="docutils literal"><span class="pre">'forcegray'</span></tt></td>
<td>Force output to be grayscale, even if input
is RGB.</td>
</tr>
<tr><td><tt class="docutils literal"><span class="pre">'quality'</span></tt></td>
<td>Set the quality of the compressed image to
a value between <tt class="docutils literal"><span class="pre">0</span></tt> and <tt class="docutils literal"><span class="pre">100</span></tt> (default
is <tt class="docutils literal"><span class="pre">75</span></tt>).  This only affects compression.</td>
</tr>
<tr><td><tt class="docutils literal"><span class="pre">'optimize'</span></tt></td>
<td>Perform Huffman table optimization.  Takes
longer, but results in smaller compressed
image.  This only affects compression.</td>
</tr>
<tr><td><tt class="docutils literal"><span class="pre">'smooth'</span></tt></td>
<td>Perform inter-block smoothing on
uncompressed image.  Only useful for low-
quality images.  This only affects
decompression.</td>
</tr>
</tbody>
</table>
</dd></dl>

<div class="admonition-see-also admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt>JPEG Still Image Data Compression Standard</dt>
<dd>The canonical reference for the JPEG image format, by Pennebaker and Mitchell.</dd>
<dt><a class="reference external" href="http://www.w3.org/Graphics/JPEG/itu-t81.pdf">Information Technology - Digital Compression and Coding of Continuous-tone Still Images - Requirements and Guidelines</a></dt>
<dd>The ISO standard for JPEG is also published as ITU T.81.  This is available
online in PDF form.</dd>
</dl>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <h4>Previous topic</h4>
            <p class="topless"><a href="imgfile.html"
                                  title="previous chapter">39.11. <tt class="docutils literal docutils literal docutils literal"><span class="pre">imgfile</span></tt> &#8212; Support for SGI imglib files</a></p>
            <h4>Next topic</h4>
            <p class="topless"><a href="sun.html"
                                  title="next chapter">40. SunOS Specific Services</a></p>
            <h3>This Page</h3>
            <ul class="this-page-menu">
              <li><a href="../_sources/library/jpeg.txt"
                     rel="nofollow">Show Source</a></li>
            </ul>
          <div id="searchbox" style="display: none">
            <h3>Quick search</h3>
              <form class="search" action="../search.html" method="get">
                <input type="text" name="q" size="18" />
                <input type="submit" value="Go" />
                <input type="hidden" name="check_keywords" value="yes" />
                <input type="hidden" name="area" value="default" />
              </form>
              <p class="searchtip" style="font-size: 90%">
              Enter search terms or a module, class or function name.
              </p>
          </div>
          <script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../modindex.html" title="Global Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="sun.html" title="40. SunOS Specific Services"
             >next</a> |</li>
        <li class="right" >
          <a href="imgfile.html" title="39.11. imgfile — Support for SGI imglib files"
             >previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="../index.html">Python v2.6.5 documentation</a> &raquo;</li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="sgi.html" >39. SGI IRIX Specific Services</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
    &copy; <a href="../copyright.html">Copyright</a> 1990-2010, Python Software Foundation.
    <br />
    The Python Software Foundation is a non-profit corporation.  
    <a href="http://www.python.org/psf/donations/">Please donate.</a>
    <br />
    Last updated on Mar 19, 2010.
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.5.
    </div>

  </body>
</html>