1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<?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</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</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' title='babl' 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>
|