<li><a href='CMYK.html'> CMYK</a></li>
<!--<li><a href='#Background'>Background</a></li>-->
<li><a href='index.html#Usage'> Usage</a></li>
- <li><a href='Vocabulary.html'> Vocabulary</a></li>
+ <li><a href='Reference.html'> Reference</a></li>
<!--<li><a href='index.html#Data-types'> Data types</a></li>
<li><a href='index.html#Color-models'> Color models</a></li>
<li><a href='#Pixel-formats'> Pixel formats</a></li>-->
<li><a href='CMYK.html'> CMYK</a></li>
<!--<li><a href='#Background'>Background</a></li>-->
<li><a href='index.html#Usage'> Usage</a></li>
- <li><a href='Vocabulary.html'> Vocabulary</a></li>
+ <li><a href='Reference.html'> Reference</a></li>
<!--<li><a href='index.html#Data-types'> Data types</a></li>
<li><a href='index.html#Color-models'> Color models</a></li>
<li><a href='#Pixel-formats'> Pixel formats</a></li>-->
CMYK.html \
ColorManagement.html \
SymmetricAlpha.html \
- Vocabulary.html
+ Reference.html
EXTRA_DIST= \
babl.css \
tools/changelog2rss \
index-static.html.in \
ColorManagement-static.html \
+ Reference-static.html \
CMYK-static.html \
SymmetricAlpha-static.html \
COPYING \
echo " [OK]"
-Vocabulary.html: Vocabulary-static.html \
+Reference.html: Reference-static.html \
$(babl_html_dump) \
toc \
Makefile.am
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+<!-- The babl webpage is partially autogenerated
+-->
+<html>
+ <head>
+ <title>babl-0.1.67</title>
+ <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+
+ <link rel="icon" href="graphics/babl-16x16.png" type="image/png" />
+ <link rel="shortcut icon" href="graphics/babl-16x16.png" type="image/png" />
+
+ <style type='text/css'>
+ @import url(babl.css);
+ </style>
+
+ <script type='text/javascript'>
+ function hide(id)
+ {
+ (document.getElementById(id)).style.display = "none";
+ }
+ function show(id)
+ {
+ (document.getElementById(id)).style.display = "block";
+ }
+ function get_visible (id)
+ {
+ var element = document.getElementById(id);
+
+ if (element &&
+ element.style.display &&
+ element.style.display != "none")
+ return true;
+ return false;
+ }
+ function set_visible (id, visible)
+ {
+ var element = document.getElementById(id);
+
+ if (element)
+ {
+ if (visible)
+ element.style.display = "block";
+ else
+ element.style.display = "none";
+ }
+ }
+ function toggle_visible (id)
+ {
+ if (get_visible(id))
+ set_visible(id, false);
+ else
+ set_visible(id,true);
+ }
+ </script>
+ </head>
+ <body>
+
+ <div class='print'>
+ <div class='print_title'>
+ <h1>Babl-0.1.67</h1>
+ </div>
+ </div>
+<!--TOC-->
+
+
+<div><a name='Babl'></a></div>
+ <div class='paper'>
+ <div class='content'>
+
+ <a name='Vocabulary'></a>
+ <h3 style='margin-bottom:0em;'>Vocabulary</h3>
+<!--BablBase-->
+
+<!--
+ <a name='Extensions'></a>
+ <h3>Extensions</h3>
+ <p>
+ At compile, load, and runtime; babl is extendable with:
+ </p>
+ <ul>
+ <li>data types.</li>
+ <li>color models.</li>
+ <li>pixel formats.</li>
+ <li>optimized conversion functions:
+ <dl>
+ <dt>SIMD instructions</dt>
+ <dd>MMX, SSE, Altivec ...</dd>
+ <dt>External libraries</dd>
+ <dd>liboil, hermes, libavcodec, lcms, ...</li>
+ </dl>
+ </li>
+ </ul>-->
+
+ <a href='graphics/index.html'><img class='BablFish' alt='/babl-0.1.67' title='babl-0.1.67' src='graphics/babl-48x48.png'/></a>
+ </div>
+ </div>
+ <div class='graphic'>
+ <div class='print'>
+ <img src='graphics/babl-a4poster.png' alt=' '/>
+ </div>
+ </div>
+
+ </body>
+</html>
<li><a href='CMYK.html'> CMYK</a></li>
<!--<li><a href='#Background'>Background</a></li>-->
<li><a href='index.html#Usage'> Usage</a></li>
- <li><a href='Vocabulary.html'> Vocabulary</a></li>
+ <li><a href='Reference.html'> Reference</a></li>
<!--<li><a href='index.html#Data-types'> Data types</a></li>
<li><a href='index.html#Color-models'> Color models</a></li>
<li><a href='#Pixel-formats'> Pixel formats</a></li>-->
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-
-<!-- The babl webpage is partially autogenerated
--->
-<html>
- <head>
- <title>babl-0.1.67</title>
- <meta http-equiv="content-type" content="text/html;charset=utf-8" />
-
- <link rel="icon" href="graphics/babl-16x16.png" type="image/png" />
- <link rel="shortcut icon" href="graphics/babl-16x16.png" type="image/png" />
-
- <style type='text/css'>
- @import url(babl.css);
- </style>
-
- <script type='text/javascript'>
- function hide(id)
- {
- (document.getElementById(id)).style.display = "none";
- }
- function show(id)
- {
- (document.getElementById(id)).style.display = "block";
- }
- function get_visible (id)
- {
- var element = document.getElementById(id);
-
- if (element &&
- element.style.display &&
- element.style.display != "none")
- return true;
- return false;
- }
- function set_visible (id, visible)
- {
- var element = document.getElementById(id);
-
- if (element)
- {
- if (visible)
- element.style.display = "block";
- else
- element.style.display = "none";
- }
- }
- function toggle_visible (id)
- {
- if (get_visible(id))
- set_visible(id, false);
- else
- set_visible(id,true);
- }
- </script>
- </head>
- <body>
-
- <div class='print'>
- <div class='print_title'>
- <h1>Babl-0.1.67</h1>
- </div>
- </div>
-<!--TOC-->
-
-
-<div><a name='Babl'></a></div>
- <div class='paper'>
- <div class='content'>
-
- <a name='Vocabulary'></a>
- <h3 style='margin-bottom:0em;'>Vocabulary</h3>
-<!--BablBase-->
-
-<!--
- <a name='Extensions'></a>
- <h3>Extensions</h3>
- <p>
- At compile, load, and runtime; babl is extendable with:
- </p>
- <ul>
- <li>data types.</li>
- <li>color models.</li>
- <li>pixel formats.</li>
- <li>optimized conversion functions:
- <dl>
- <dt>SIMD instructions</dt>
- <dd>MMX, SSE, Altivec ...</dd>
- <dt>External libraries</dd>
- <dd>liboil, hermes, libavcodec, lcms, ...</li>
- </dl>
- </li>
- </ul>-->
-
- <a href='graphics/index.html'><img class='BablFish' alt='/babl-0.1.67' title='babl-0.1.67' src='graphics/babl-48x48.png'/></a>
- </div>
- </div>
- <div class='graphic'>
- <div class='print'>
- <img src='graphics/babl-a4poster.png' alt=' '/>
- </div>
- </div>
-
- </body>
-</html>
<li><a href='CMYK.html'> CMYK</a></li>
<!--<li><a href='#Background'>Background</a></li>-->
<li><a href='index.html#Usage'> Usage</a></li>
- <li><a href='Vocabulary.html'> Vocabulary</a></li>
+ <li><a href='Reference.html'> Reference</a></li>
<!--<li><a href='index.html#Data-types'> Data types</a></li>
<li><a href='index.html#Color-models'> Color models</a></li>
<li><a href='#Pixel-formats'> Pixel formats</a></li>-->