PTdecode/CImg-1.3.0/html/reference/namespacemembers.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 class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
   114       <li><a href="annotated.html"><span>Classes</span></a></li>
   115     </ul>
   116   </div>
   117   <div class="tabs">
   118     <ul>
   119       <li><a href="namespaces.html"><span>Namespace&nbsp;List</span></a></li>
   120       <li class="current"><a href="namespacemembers.html"><span>Namespace&nbsp;Members</span></a></li>
   121     </ul>
   122   </div>
   123   <div class="tabs">
   124     <ul>
   125       <li class="current"><a href="namespacemembers.html"><span>All</span></a></li>
   126       <li><a href="namespacemembers_func.html"><span>Functions</span></a></li>
   127       <li><a href="namespacemembers_vars.html"><span>Variables</span></a></li>
   128     </ul>
   129   </div>
   130   <div class="tabs">
   131     <ul>
   132       <li><a href="#index_a"><span>a</span></a></li>
   133       <li><a href="#index_b"><span>b</span></a></li>
   134       <li><a href="#index_c"><span>c</span></a></li>
   135       <li><a href="#index_d"><span>d</span></a></li>
   136       <li><a href="#index_e"><span>e</span></a></li>
   137       <li><a href="#index_f"><span>f</span></a></li>
   138       <li><a href="#index_g"><span>g</span></a></li>
   139       <li><a href="#index_i"><span>i</span></a></li>
   140       <li><a href="#index_m"><span>m</span></a></li>
   141       <li><a href="#index_n"><span>n</span></a></li>
   142       <li><a href="#index_p"><span>p</span></a></li>
   143       <li><a href="#index_r"><span>r</span></a></li>
   144       <li><a href="#index_s"><span>s</span></a></li>
   145       <li><a href="#index_t"><span>t</span></a></li>
   146       <li><a href="#index_u"><span>u</span></a></li>
   147       <li><a href="#index_v"><span>v</span></a></li>
   148       <li><a href="#index_w"><span>w</span></a></li>
   149       <li><a href="#index_x"><span>x</span></a></li>
   150     </ul>
   151   </div>
   152 </div>
   153 <div class="contents">
   154 Here is a list of all documented namespace members with links to the namespaces they belong to:
   155 <p>
   156 <h3><a class="anchor" name="index_a">- a -</a></h3><ul>
   157 <li>abs()
   158 : <a class="el" href="namespacecimg__library_1_1cimg.html#5dd0a4d361e2db646f5042be6bfe1d31">cimg_library::cimg</a>
   159 <li>atof()
   160 : <a class="el" href="namespacecimg__library_1_1cimg.html#9ab0fcc7ef1bac330897fec51f617ae6">cimg_library::cimg</a>
   161 </ul>
   162 <h3><a class="anchor" name="index_b">- b -</a></h3><ul>
   163 <li>basename()
   164 : <a class="el" href="namespacecimg__library_1_1cimg.html#bc491a5ed3a8d97e395138a379767a45">cimg_library::cimg</a>
   165 </ul>
   166 <h3><a class="anchor" name="index_c">- c -</a></h3><ul>
   167 <li>crand()
   168 : <a class="el" href="namespacecimg__library_1_1cimg.html#ae82972570fdc0904d4f03df7b5d3023">cimg_library::cimg</a>
   169 </ul>
   170 <h3><a class="anchor" name="index_d">- d -</a></h3><ul>
   171 <li>dcraw_path()
   172 : <a class="el" href="namespacecimg__library_1_1cimg.html#e36d7a689692ac5663afe1bbdab5d9fa">cimg_library::cimg</a>
   173 <li>dialog()
   174 : <a class="el" href="namespacecimg__library_1_1cimg.html#9bd2a1e3ffff4538c4f53856e8b28ded">cimg_library::cimg</a>
   175 </ul>
   176 <h3><a class="anchor" name="index_e">- e -</a></h3><ul>
   177 <li>endianness()
   178 : <a class="el" href="namespacecimg__library_1_1cimg.html#0d2a283a3aa2572e9d343f040c8c4c6b">cimg_library::cimg</a>
   179 <li>exception_mode()
   180 : <a class="el" href="namespacecimg__library_1_1cimg.html#acf66918a1173b3f72fe6f088d94f26b">cimg_library::cimg</a>
   181 </ul>
   182 <h3><a class="anchor" name="index_f">- f -</a></h3><ul>
   183 <li>fclose()
   184 : <a class="el" href="namespacecimg__library_1_1cimg.html#e381e63cfec4d6d2426a2763c05a094f">cimg_library::cimg</a>
   185 <li>ffmpeg_path()
   186 : <a class="el" href="namespacecimg__library_1_1cimg.html#bf1666b982cb372129f2ae2fdc748ef2">cimg_library::cimg</a>
   187 <li>file_type()
   188 : <a class="el" href="namespacecimg__library_1_1cimg.html#69b9fcf4cc4ef26506e3a35d8db2cb74">cimg_library::cimg</a>
   189 <li>fopen()
   190 : <a class="el" href="namespacecimg__library_1_1cimg.html#dff1045b64c40864232f07ec686fa731">cimg_library::cimg</a>
   191 <li>fread()
   192 : <a class="el" href="namespacecimg__library_1_1cimg.html#ae720b10098f87a24c8756e63c48b49a">cimg_library::cimg</a>
   193 <li>fwrite()
   194 : <a class="el" href="namespacecimg__library_1_1cimg.html#b57bdbf463552372e18a7dda032c3054">cimg_library::cimg</a>
   195 </ul>
   196 <h3><a class="anchor" name="index_g">- g -</a></h3><ul>
   197 <li>grand()
   198 : <a class="el" href="namespacecimg__library_1_1cimg.html#0341a323738439349625b2de5f35bb4c">cimg_library::cimg</a>
   199 <li>graphicsmagick_path()
   200 : <a class="el" href="namespacecimg__library_1_1cimg.html#a9f7e166f51b43facc8ecc9f05e4ceba">cimg_library::cimg</a>
   201 <li>gunzip_path()
   202 : <a class="el" href="namespacecimg__library_1_1cimg.html#08f71c29acfe85d5b8718900e995b779">cimg_library::cimg</a>
   203 <li>gzip_path()
   204 : <a class="el" href="namespacecimg__library_1_1cimg.html#75f3391e7a393c1c1fe43537004537e2">cimg_library::cimg</a>
   205 </ul>
   206 <h3><a class="anchor" name="index_i">- i -</a></h3><ul>
   207 <li>imagemagick_path()
   208 : <a class="el" href="namespacecimg__library_1_1cimg.html#d0db1003e37cc111d9eddd282c1ab27b">cimg_library::cimg</a>
   209 <li>info()
   210 : <a class="el" href="namespacecimg__library_1_1cimg.html#c1b66fe77173de9e5e8542b2823d6071">cimg_library::cimg</a>
   211 <li>invert_endianness()
   212 : <a class="el" href="namespacecimg__library_1_1cimg.html#565abb2900eedfc3700ec2a87986bb89">cimg_library::cimg</a>
   213 </ul>
   214 <h3><a class="anchor" name="index_m">- m -</a></h3><ul>
   215 <li>max()
   216 : <a class="el" href="namespacecimg__library_1_1cimg.html#ef8f304ef317aed250bbb0dc2b242969">cimg_library::cimg</a>
   217 <li>medcon_path()
   218 : <a class="el" href="namespacecimg__library_1_1cimg.html#aedba1291890f50edb5be58ef662e516">cimg_library::cimg</a>
   219 <li>min()
   220 : <a class="el" href="namespacecimg__library_1_1cimg.html#11ac2edf216d6e3085207fbef99c8a10">cimg_library::cimg</a>
   221 <li>minmod()
   222 : <a class="el" href="namespacecimg__library_1_1cimg.html#e2bab18e9272641210d8b2d7e4a4503f">cimg_library::cimg</a>
   223 <li>mod()
   224 : <a class="el" href="namespacecimg__library_1_1cimg.html#85970edf9afb3b48c0715fadf917854e">cimg_library::cimg</a>
   225 </ul>
   226 <h3><a class="anchor" name="index_n">- n -</a></h3><ul>
   227 <li>nearest_pow2()
   228 : <a class="el" href="namespacecimg__library_1_1cimg.html#2d817bb30160ae25fde49bd14db5a7e6">cimg_library::cimg</a>
   229 <li>number_filename()
   230 : <a class="el" href="namespacecimg__library_1_1cimg.html#878d8296e87c4ddae1676158e40cbd3a">cimg_library::cimg</a>
   231 </ul>
   232 <h3><a class="anchor" name="index_p">- p -</a></h3><ul>
   233 <li>prand()
   234 : <a class="el" href="namespacecimg__library_1_1cimg.html#7f927973e2bc17b851bb61cdfbfef061">cimg_library::cimg</a>
   235 </ul>
   236 <h3><a class="anchor" name="index_r">- r -</a></h3><ul>
   237 <li>rand()
   238 : <a class="el" href="namespacecimg__library_1_1cimg.html#f31db729637ea4dad61e49e5729839c4">cimg_library::cimg</a>
   239 <li>rol()
   240 : <a class="el" href="namespacecimg__library_1_1cimg.html#964b7bf56de9cba321b402ab86db3ff7">cimg_library::cimg</a>
   241 <li>ror()
   242 : <a class="el" href="namespacecimg__library_1_1cimg.html#62fd3ab82b98aa857fcf5f3fbd7c8b99">cimg_library::cimg</a>
   243 <li>round()
   244 : <a class="el" href="namespacecimg__library_1_1cimg.html#0bfd704cc09f4a25f09035b067aca4e3">cimg_library::cimg</a>
   245 </ul>
   246 <h3><a class="anchor" name="index_s">- s -</a></h3><ul>
   247 <li>sign()
   248 : <a class="el" href="namespacecimg__library_1_1cimg.html#cb00b9ea45d7c523af71071eaad2fd98">cimg_library::cimg</a>
   249 <li>sleep()
   250 : <a class="el" href="namespacecimg__library_1_1cimg.html#3ac7655e49556a90715f3532af221334">cimg_library::cimg</a>
   251 <li>split_filename()
   252 : <a class="el" href="namespacecimg__library_1_1cimg.html#9f7068ec0354e0b34a69a9dc829598aa">cimg_library::cimg</a>
   253 <li>sqr()
   254 : <a class="el" href="namespacecimg__library_1_1cimg.html#415ccb3d8d3cf2e7bbdca6fa18ed3465">cimg_library::cimg</a>
   255 <li>strcasecmp()
   256 : <a class="el" href="namespacecimg__library_1_1cimg.html#43334b3df38ff7c4369a503a4fc3a9f9">cimg_library::cimg</a>
   257 <li>strclean()
   258 : <a class="el" href="namespacecimg__library_1_1cimg.html#7199326277681bfe958fc21a508897e2">cimg_library::cimg</a>
   259 <li>strcmp()
   260 : <a class="el" href="namespacecimg__library_1_1cimg.html#aab723edb9b070b285367e7ffc099d78">cimg_library::cimg</a>
   261 <li>strescape()
   262 : <a class="el" href="namespacecimg__library_1_1cimg.html#7710ef1683aa12ead974583b764cd353">cimg_library::cimg</a>
   263 <li>strfind()
   264 : <a class="el" href="namespacecimg__library_1_1cimg.html#2f127d56499b955c44ab1e5963d04c8c">cimg_library::cimg</a>
   265 <li>strlen()
   266 : <a class="el" href="namespacecimg__library_1_1cimg.html#3f65ad0f35bbbfc7ec197ce32f326da2">cimg_library::cimg</a>
   267 <li>strncasecmp()
   268 : <a class="el" href="namespacecimg__library_1_1cimg.html#747de40c911c42d60e1a4ee3f0c69c6c">cimg_library::cimg</a>
   269 <li>strncmp()
   270 : <a class="el" href="namespacecimg__library_1_1cimg.html#efc1425e963cd56d8a926908749119a5">cimg_library::cimg</a>
   271 <li>strpare()
   272 : <a class="el" href="namespacecimg__library_1_1cimg.html#75c2af1ba1b514bd547f9b23745b125c">cimg_library::cimg</a>
   273 <li>swap()
   274 : <a class="el" href="namespacecimg__library_1_1cimg.html#40c508097e570855c68bc944249ecf59">cimg_library::cimg</a>
   275 <li>system()
   276 : <a class="el" href="namespacecimg__library_1_1cimg.html#09e80f4d7a95f3d5c2282202d8526520">cimg_library::cimg</a>
   277 </ul>
   278 <h3><a class="anchor" name="index_t">- t -</a></h3><ul>
   279 <li>temporary()
   280 : <a class="el" href="namespacecimg__library_1_1cimg.html#f3bb87016460121409a8f1a2ebe418b1">cimg_library::cimg</a>
   281 <li>temporary_path()
   282 : <a class="el" href="namespacecimg__library_1_1cimg.html#797797a309ca40aa28cdfbb92f4d1621">cimg_library::cimg</a>
   283 <li>time()
   284 : <a class="el" href="namespacecimg__library_1_1cimg.html#f883131bbc64e996d212114cc2b2b21a">cimg_library::cimg</a>
   285 </ul>
   286 <h3><a class="anchor" name="index_u">- u -</a></h3><ul>
   287 <li>uncase()
   288 : <a class="el" href="namespacecimg__library_1_1cimg.html#5a028d4d4de4e1894263a29a6de8e2ee">cimg_library::cimg</a>
   289 </ul>
   290 <h3><a class="anchor" name="index_v">- v -</a></h3><ul>
   291 <li>valuePI
   292 : <a class="el" href="namespacecimg__library_1_1cimg.html#0227707be3c6c40e2f71806077fbfcdb">cimg_library::cimg</a>
   293 </ul>
   294 <h3><a class="anchor" name="index_w">- w -</a></h3><ul>
   295 <li>wait()
   296 : <a class="el" href="namespacecimg__library_1_1cimg.html#3c8917c0f12139bff6de6e3e45fc5b77">cimg_library::cimg</a>
   297 <li>warn()
   298 : <a class="el" href="namespacecimg__library_1_1cimg.html#93ec28267b101050d949d1ebff1b88cf">cimg_library::cimg</a>
   299 </ul>
   300 <h3><a class="anchor" name="index_x">- x -</a></h3><ul>
   301 <li>xln()
   302 : <a class="el" href="namespacecimg__library_1_1cimg.html#8dde183be46c1821a3901b63825a4cf4">cimg_library::cimg</a>
   303 </ul>
   304 </div>
   305 <hr noshade="noshade" size="1" width="100%">
   306 <a href="http://sourceforge.net">
   307 <img src="http://sourceforge.net/sflogo.php?group_id=96492&amp;type=3" border="0" height="37" width="125"></img>
   308 </a>
   309 <!-- Start of StatCounter Code -->
   310 <script type="text/javascript" language="javascript">
   311 <!--
   312 var sc_project=895001;
   313 var sc_invisible=1;
   314 var sc_partition=7;
   315 var sc_security="5ea85181";
   316 //-->
   317 </script>
   318 <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>
   319 <!-- End of StatCounter Code -->
   320 </body>
   321 </html>