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