website annotate en/doc/handbook/graphics.html @ rev 166

en: Edits (aargh)
author Paul Issott <paul@slitaz.org>
date Sat Sep 13 14:13:30 2008 +0000 (2008-09-13)
parents 658f2885e2f2
children fa2c5bed2417
rev   line source
paul@68 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
paul@68 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
paul@68 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
paul@68 4 <head>
paul@68 5 <title>SliTaz Handbook (en) - Graphics</title>
paul@62 6 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
paul@62 7 <meta name="description" content="slitaz English handbook" />
paul@62 8 <meta name="expires" content="never" />
MikeDSmith25@117 9 <meta name="modified" content="2008-07-17 00:15:00" />
paul@62 10 <meta name="publisher" content="www.slitaz.org" />
paul@62 11 <meta name="author" content="Christophe Lincoln" />
paul@62 12 <link rel="shortcut icon" href="favicon.ico" />
paul@68 13 <link rel="stylesheet" type="text/css" href="book.css" />
paul@68 14 </head>
paul@68 15 <body bgcolor="#ffffff">
paul@62 16
paul@62 17 <!-- Header and quick navigation -->
paul@62 18 <div id="header">
paul@62 19 <div id="quicknav" align="right">
paul@62 20 <a name="top"></a>
paul@68 21 <a href="development.html">Development</a> |
paul@62 22 <a href="index.html">Table of contents</a>
paul@62 23 </div>
paul@62 24 <h1><font color="#3e1220">SliTaz Handbook (en)</font></h1>
paul@62 25 </div>
paul@62 26
paul@62 27 <!-- Content. -->
paul@62 28 <div id="content">
paul@62 29 <div class="content-right"></div>
paul@62 30
paul@62 31 <h2><font color="#df8f06">Graphics and Image management</font></h2>
paul@62 32
paul@62 33 <ul>
paul@62 34 <li><a href="#gcolor2">Gcolor2</a> - Color selector.</li>
paul@62 35 <li><a href="#gimp">Gimp</a> - Manipulate and create images.</li>
MikeDSmith25@117 36 <li><a href="#gqview">GQview</a> - Image manager.</li>
paul@62 37 <li><a href="#jpeg">jpeg</a> - JPEG command line tools.</li>
paul@62 38 <li><a href="#mtPaint">mtPaint</a> - Image processing.</li>
paul@62 39 </ul>
paul@62 40
paul@62 41 <a name="gcolor2"></a>
paul@62 42 <h3>Gcolor2 - Select and manage colors</h3>
paul@62 43 <p>
paul@166 44 Gcolor2 is a tool to select and retain palette colors. It can be useful for the creation of SliTaz themes,
paul@62 45 for example. It can be found in the Graphics category or run from the command line:
paul@62 46 </p>
paul@62 47 <pre> $ gcolor2 &amp;
paul@62 48 </pre>
paul@62 49
paul@62 50 <a name="gimp"></a>
paul@62 51 <h3>Gimp - Manipulate and create images</h3>
paul@62 52 <p>
paul@63 53 The GIMP (GNU Image Manipulation) is software that can manipulate images to a very high quality level.
paul@166 54 It allows you to do what you would expect from an application that processes images, ie. layers, filters,
MikeDSmith25@117 55 support scripts adding functionality, etc. GIMP supports a large number of image formats such as:
paul@155 56 PNG, JPEG, XPM, PPM, TIFF, PostScript, PSD, it also offers its own XCF format. To install GIMP:
paul@62 57 </p>
paul@62 58 <pre> # tazpkg get-install gimp
paul@62 59 </pre>
paul@62 60 <p>
paul@62 61 GIMP is scalable and can be configured with the main interface - configuration files, brushes and personal
paul@62 62 scripts are located in the <code>~/.gimp-2.2</code> directory.
paul@62 63 </p>
paul@62 64
paul@62 65 <a name="gqview"></a>
MikeDSmith25@117 66 <h3>GQview - Image manager</h3>
paul@62 67 <p>
paul@62 68 GQview is very light and quick and allows you to navigate rapidly between images by selecting files
paul@128 69 in a directory tree with a single mouse click. It supports slideshows, image rotation, adding
paul@162 70 keywords and tags, drag and drop, and can display EXIF data. It also allows you to edit images
paul@62 71 in the software of your choice (Mtpaint, GIMP for example). To install GQview:
paul@62 72 </p>
paul@62 73 <pre> # tazpkg get-install gqview
paul@62 74 </pre>
paul@62 75
paul@62 76 <a name="jpeg"></a>
paul@62 77 <h3>jpeg - JPEG command line tools</h3>
paul@62 78 <p>
paul@62 79 To allow applications that use JPEG to function, linked libraries must be provided by the package
paul@62 80 <code>jpeg-6b</code>, this package also contains some tiny utilities that can be used on the command
paul@62 81 line such as <code>cjpeg</code> and <code>djpeg</code>. To modify JPEG images on the command line you
paul@62 82 can also use <code>jpegtran</code>, installed by default on SliTaz, <code>jpegtran</code> allows you to
paul@62 83 rotate images via the <code>-rotate</code> option. To find out all of the options available for these
paul@62 84 tools, just specify the <code>--help</code> option. Example:
paul@62 85 </p>
paul@62 86 <pre> $ cjpeg --help
paul@62 87 </pre>
paul@62 88
paul@62 89 <a name="mtPaint"></a>
paul@62 90 <h3>mtPaint - Image processing</h3>
paul@62 91 <p>
paul@62 92 mtPaint is an application for the creation and retouching of PNG, TIFF,
paul@62 93 XPM and BMP images. It offers many simple, lightweight, fast functions like
paul@128 94 capture screen (screenshot) which you can access from the menu --&gt; Graphics --&gt;
paul@128 95 Grab screenshot, or via a terminal:
paul@62 96 </p>
paul@62 97 <pre> $ mtpaint -s
paul@62 98 </pre>
paul@62 99
paul@62 100 <!-- End of content -->
paul@62 101 </div>
paul@62 102
paul@62 103 <!-- Footer. -->
paul@62 104 <div id="footer">
paul@62 105 <div class="footer-right"></div>
paul@62 106 <a href="#top">Top of the page</a> |
paul@68 107 <a href="index.html">Table of contents</a>
paul@62 108 </div>
paul@62 109
paul@62 110 <div id="copy">
paul@62 111 Copyright © 2008 <a href="http://www.slitaz.org/en/">SliTaz</a> -
paul@62 112 <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>;<br />
paul@62 113 Documentation is under
paul@62 114 <a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a>
paul@62 115 and code is <a href="http://validator.w3.org/">valid xHTML 1.0</a>.
paul@62 116 </div>
paul@62 117
paul@68 118 </body>
paul@68 119 </html>
paul@62 120