PTdecode/CImg-1.3.0/html/reference/functions_0x69.html

Mon, 03 Aug 2009 14:09:20 +0100

author
Philip Pemberton <philpem@philpem.me.uk>
date
Mon, 03 Aug 2009 14:09:20 +0100
changeset 5
1204ebf9340d
permissions
-rwxr-xr-x

added P-touch decoder source

     1  xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
     2 <head>
     3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta>
     4 <title>The CImg Library - C++ Template Image Processing Toolkit</title>
     5 <meta content="David Tschumperle" name="author"></meta>
     6 <link rel="shortcut icon" type="image/x-icon" href="http://cimg.sourceforge.net/favicon.ico"></link>
     7 <link rel="icon" type="image/png" href="favicon.png"></link>
     8 <link href="doxygen.css" rel="stylesheet" type="text/css">
     9 <link href="tabs.css" rel="stylesheet" type="text/css">
    10 <style type="text/css">
    11 <!--
    12 body {background-color:white; font-family:sans-serif; }
    13 a:active{text-decoration:none; color:#303090}
    14 a:link{text-decoration:none; color:#303090}
    15 a:visited{text-decoration:none; color:#303090}
    16 a:hover{text-decoration:underline; color:#4E9F71}
    17 -->
    18 </style>
    19 <script language="JavaScript" type="text/javascript">
    20   <!-- Original:  Eric King (eric_andrew_king@hotmail.com) is used to display images in popup windows -->
    21   <!-- Web Site:  http://redrival.com/eak/ -->
    22   <!-- This script and many more are available free online at -->
    23   <!-- The JavaScript Source!! http://javascript.internet.com -->
    24   <!-- Begin
    25   function NewWindow(mypage, myname, w, h, scroll) {
    26   var winl = (screen.width - w) / 2;
    27   var wint = (screen.height - h) / 2;
    28   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
    29   win = window.open(mypage, myname, winprops)
    30   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
    31   }
    32   //  End -->
    33 </script>
    34 </head>
    35 <body>
    36  <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
    37   <tbody><tr><td>
    38    <hr noshade="noshade" size="1" width="90%"></hr>
    39    <center>
    40    <br/>
    41    <a href="http://cimg.sourceforge.net"><img src="http://cimg.sourceforge.net/img/CImgLogo.jpg" alt="" border="0"></img></a><br/>
    42    <br/>
    43    </center>
    44    <hr noshade="noshade" size="1" width="90%"></hr>
    45    <center>
    46    <table bgcolor="#EEEEFF" style="width: 90%; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="3" cellspacing="0">
    47    <tbody><tr><td style="text-align: center; vertical-align: top;">
    48    <font color="#FFFFFF" face="Arial,Helvetica" size="-1">
    49    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/index.shtml">Main</a> <b>]</b>
    50    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/news.shtml">News</a><b>] </b>
    51    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/download.shtml">Download</a> <b>]</b>
    52    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/screenshots.shtml">Screenshots</a> <b>]</b>
    53    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/reference/group__cimg__faq.html">FAQ</a> <b>]</b>
    54    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/reference/group__cimg__tutorial.html">Tutorial</a> <b>]</b>
    55    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/reference/index.html">Documentation</a> <b>]</b>
    56    <b>[</b> <a target="_parent" href="http://sourceforge.net/forum/forum.php?forum_id=334630">Forum</a> <b>]</b>
    57    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/chat.shtml">Chat</a> <b>]</b>
    58    <b>[</b> <a target="_parent" href="http://cimg.sourceforge.net/links.shtml">Links</a> <b>]</b>
    59    </font>
    60    </td></tr></tbody>
    61    </table>
    62    </center>
    63    <hr noshade="noshade" size="1" width="90%"></hr>
    64   </td></tr></tbody>
    65 </table>
    66 <!-- Generated by Doxygen 1.5.7.1 -->
    67 <script type="text/javascript">
    68 <!--
    69 function changeDisplayState (e){
    70   var num=this.id.replace(/[^[0-9]/g,'');
    71   var button=this.firstChild;
    72   var sectionDiv=document.getElementById('dynsection'+num);
    73   if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){
    74     sectionDiv.style.display='block';
    75     button.src='open.gif';
    76   }else{
    77     sectionDiv.style.display='none';
    78     button.src='closed.gif';
    79   }
    80 }
    81 function initDynSections(){
    82   var divs=document.getElementsByTagName('div');
    83   var sectionCounter=1;
    84   for(var i=0;i<divs.length-1;i++){
    85     if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){
    86       var header=divs[i];
    87       var section=divs[i+1];
    88       var button=header.firstChild;
    89       if (button!='IMG'){
    90         divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild);
    91         button=document.createElement('img');
    92         divs[i].insertBefore(button,divs[i].firstChild);
    93       }
    94       header.style.cursor='pointer';
    95       header.onclick=changeDisplayState;
    96       header.id='dynheader'+sectionCounter;
    97       button.src='closed.gif';
    98       section.id='dynsection'+sectionCounter;
    99       section.style.display='none';
   100       section.style.marginLeft='14px';
   101       sectionCounter++;
   102     }
   103   }
   104 }
   105 window.onload = initDynSections;
   106 -->
   107 </script>
   108 <div class="navigation" id="top">
   109   <div class="tabs">
   110     <ul>
   111       <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
   112       <li><a href="modules.html"><span>Modules</span></a></li>
   113       <li><a href="namespaces.html"><span>Namespaces</span></a></li>
   114       <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
   115     </ul>
   116   </div>
   117   <div class="tabs">
   118     <ul>
   119       <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
   120       <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
   121       <li class="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
   122     </ul>
   123   </div>
   124   <div class="tabs">
   125     <ul>
   126       <li class="current"><a href="functions.html"><span>All</span></a></li>
   127       <li><a href="functions_func.html"><span>Functions</span></a></li>
   128       <li><a href="functions_vars.html"><span>Variables</span></a></li>
   129       <li><a href="functions_type.html"><span>Typedefs</span></a></li>
   130     </ul>
   131   </div>
   132   <div class="tabs">
   133     <ul>
   134       <li><a href="functions.html#index__"><span>_</span></a></li>
   135       <li><a href="functions_0x61.html#index_a"><span>a</span></a></li>
   136       <li><a href="functions_0x62.html#index_b"><span>b</span></a></li>
   137       <li><a href="functions_0x63.html#index_c"><span>c</span></a></li>
   138       <li><a href="functions_0x64.html#index_d"><span>d</span></a></li>
   139       <li><a href="functions_0x65.html#index_e"><span>e</span></a></li>
   140       <li><a href="functions_0x66.html#index_f"><span>f</span></a></li>
   141       <li><a href="functions_0x67.html#index_g"><span>g</span></a></li>
   142       <li><a href="functions_0x68.html#index_h"><span>h</span></a></li>
   143       <li class="current"><a href="functions_0x69.html#index_i"><span>i</span></a></li>
   144       <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li>
   145       <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li>
   146       <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li>
   147       <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li>
   148       <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li>
   149       <li><a href="functions_0x70.html#index_p"><span>p</span></a></li>
   150       <li><a href="functions_0x71.html#index_q"><span>q</span></a></li>
   151       <li><a href="functions_0x72.html#index_r"><span>r</span></a></li>
   152       <li><a href="functions_0x73.html#index_s"><span>s</span></a></li>
   153       <li><a href="functions_0x74.html#index_t"><span>t</span></a></li>
   154       <li><a href="functions_0x75.html#index_u"><span>u</span></a></li>
   155       <li><a href="functions_0x76.html#index_v"><span>v</span></a></li>
   156       <li><a href="functions_0x77.html#index_w"><span>w</span></a></li>
   157       <li><a href="functions_0x78.html#index_x"><span>x</span></a></li>
   158       <li><a href="functions_0x79.html#index_y"><span>y</span></a></li>
   159       <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li>
   160     </ul>
   161   </div>
   162 </div>
   163 <div class="contents">
   164 Here is a list of all documented class members with links to the class documentation for each member:
   165 <p>
   166 <h3><a class="anchor" name="index_i">- i -</a></h3><ul>
   167 <li>identity_matrix()
   168 : <a class="el" href="structcimg__library_1_1CImg.html#14131b116119f392019c431f6eac5c6f">CImg</a>
   169 <li>invert()
   170 : <a class="el" href="structcimg__library_1_1CImg.html#930302996a00b75e7e4ea7b4d6dea821">CImg</a>
   171 <li>invert_endianness()
   172 : <a class="el" href="structcimg__library_1_1CImg.html#d1bdd0c686ccaa6a12ff4b69efa5a567">CImg</a>
   173 <li>is_closed
   174 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#6177b591b6fdd86be8a841805e35e280">CImgDisplay</a>
   175 <li>is_empty()
   176 : <a class="el" href="structcimg__library_1_1CImgList.html#cef8e33cfd36a5d7d2fad939efcf02e3">CImgList</a>
   177 , <a class="el" href="structcimg__library_1_1CImgDisplay.html#cef8e33cfd36a5d7d2fad939efcf02e3">CImgDisplay</a>
   178 , <a class="el" href="structcimg__library_1_1CImg.html#cef8e33cfd36a5d7d2fad939efcf02e3">CImg</a>
   179 <li>is_event
   180 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#e899d3a3cda0dc8e2fccac37f2258840">CImgDisplay</a>
   181 <li>is_fullscreen
   182 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#198912a8b09f955a6510f97d62060f5c">CImgDisplay</a>
   183 <li>is_key()
   184 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#75d2273ead659c7a3774b5972450f3e8">CImgDisplay</a>
   185 <li>is_keyESC
   186 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#fe7ba7376c7b08dec24ac4c42d5fc753">CImgDisplay</a>
   187 <li>is_moved
   188 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#9655ae9b239a315df522996415012d0a">CImgDisplay</a>
   189 <li>is_overlapped()
   190 : <a class="el" href="structcimg__library_1_1CImg.html#b37041213cf48faf44debd569ae93127">CImg</a>
   191 <li>is_resized
   192 : <a class="el" href="structcimg__library_1_1CImgDisplay.html#c36e1e5ca1f39584ff996eddc7bc7f0e">CImgDisplay</a>
   193 <li>is_sameN()
   194 : <a class="el" href="structcimg__library_1_1CImgList.html#bf45495f91f5e6e04bd597f0dd5d1ee4">CImgList</a>
   195 <li>is_sameV()
   196 : <a class="el" href="structcimg__library_1_1CImg.html#cd8ae750af0f68148227285c97036321">CImg</a>
   197 <li>is_sameX()
   198 : <a class="el" href="structcimg__library_1_1CImg.html#6f2389ea0ff1313b23523d557980a8a6">CImg</a>
   199 <li>is_sameXV()
   200 : <a class="el" href="structcimg__library_1_1CImg.html#1196976be93ae9d179bd9de3a5d997fe">CImg</a>
   201 <li>is_sameXY()
   202 : <a class="el" href="structcimg__library_1_1CImg.html#f202a5fce446abc81966aa0df075075c">CImg</a>
   203 <li>is_sameXYV()
   204 : <a class="el" href="structcimg__library_1_1CImg.html#f79477b4ed4ba3e40f96363eeb735049">CImg</a>
   205 <li>is_sameXYZ()
   206 : <a class="el" href="structcimg__library_1_1CImg.html#36a12bf20a1d6cf863f505877e30bdce">CImg</a>
   207 <li>is_sameXYZV()
   208 : <a class="el" href="structcimg__library_1_1CImg.html#8d5a5b714082a0cd2315b19984e69163">CImg</a>
   209 <li>is_sameXZ()
   210 : <a class="el" href="structcimg__library_1_1CImg.html#3d19709f9f46ca0ab06a5942f91b8ee4">CImg</a>
   211 <li>is_sameXZV()
   212 : <a class="el" href="structcimg__library_1_1CImg.html#5f1f9f15a7ca3dff58e5ee2d0e90b3e2">CImg</a>
   213 <li>is_sameY()
   214 : <a class="el" href="structcimg__library_1_1CImg.html#cb6a0d74efed60628344ce37e44aca31">CImg</a>
   215 <li>is_sameYV()
   216 : <a class="el" href="structcimg__library_1_1CImg.html#64684b41dcd2a660962be8df5d30d2cf">CImg</a>
   217 <li>is_sameYZ()
   218 : <a class="el" href="structcimg__library_1_1CImg.html#229ee758d966e13dc65cc853b5bc2566">CImg</a>
   219 <li>is_sameYZV()
   220 : <a class="el" href="structcimg__library_1_1CImg.html#10f8cee08e95111cc9bb227ca11b079f">CImg</a>
   221 <li>is_sameZ()
   222 : <a class="el" href="structcimg__library_1_1CImg.html#ae8da1879332cbb3807133b552d1cafe">CImg</a>
   223 <li>is_sameZV()
   224 : <a class="el" href="structcimg__library_1_1CImg.html#fcd67d621531a0cfe2d9c004442b3575">CImg</a>
   225 <li>is_shared
   226 : <a class="el" href="structcimg__library_1_1CImg.html#64fc9b1179593151684cfdc86dac7e65">CImg</a>
   227 <li>iterator
   228 : <a class="el" href="structcimg__library_1_1CImgList.html#7c1c29e319c572a740b103b024f37034">CImgList</a>
   229 , <a class="el" href="structcimg__library_1_1CImg.html#35c955cacac6aacaa1e82874b1628865">CImg</a>
   230 </ul>
   231 </div>
   232 <hr noshade="noshade" size="1" width="100%">
   233 <a href="http://sourceforge.net">
   234 <img src="http://sourceforge.net/sflogo.php?group_id=96492&amp;type=3" border="0" height="37" width="125"></img>
   235 </a>
   236 <!-- Start of StatCounter Code -->
   237 <script type="text/javascript" language="javascript">
   238 <!--
   239 var sc_project=895001;
   240 var sc_invisible=1;
   241 var sc_partition=7;
   242 var sc_security="5ea85181";
   243 //-->
   244 </script>
   245 <script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c8.statcounter.com/counter.php?sc_project=895001&amp;java=0&amp;security=5ea85181&amp;invisible=1" alt="counter stats" border="0"></a> </noscript>
   246 <!-- End of StatCounter Code -->
   247 </body>
   248 </html>