diff options
author | Tim Janik <timj@gtk.org> | 2001-09-04 01:10:11 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-09-04 01:10:11 +0000 |
commit | f4ab7aa5eb7040e7fca8df335c5aac375f96e8f2 (patch) | |
tree | 9fc792604e49b15d959cf5fcb8634d147f45484c /gdk-pixbuf/gdk-pixbuf-csource.1 | |
parent | 43405a3d77249aed3357af092225dc74ff73aff5 (diff) | |
download | gdk-pixbuf-f4ab7aa5eb7040e7fca8df335c5aac375f96e8f2.tar.gz |
updates for 1.3.7 release.
Tue Sep 4 03:12:25 2001 Tim Janik <timj@gtk.org>
* NEWS: updates for 1.3.7 release.
Tue Sep 4 03:09:52 2001 Tim Janik <timj@gtk.org>
* gdk-pixbuf-csource.1: new file, manual page for
the publically installed gdk-pixbuf-csource utility.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-csource.1')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-csource.1 | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-csource.1 b/gdk-pixbuf/gdk-pixbuf-csource.1 new file mode 100644 index 000000000..ebc056750 --- /dev/null +++ b/gdk-pixbuf/gdk-pixbuf-csource.1 @@ -0,0 +1,91 @@ +.TH GDK-PIXBUF-CSOURCE 1 "04 Sep 2001" +.SH NAME +gdk-pixbuf-csource \- C code generation utility for GdkPixbuf images +.SH SYNOPSIS + +\fBgdk-pixbuf-csource\fP [\fIoptions\fP] [\fIimage\fP] +.br +\fBgdk-pixbuf-csource\fP [\fIoptions\fP] \fI--build-list\fP [[\fIname image\fP]...] + +.SH DESCRIPTION +\fBgdk-pixbuf-csource\fP is a small utility that generates C code containing +images, usefull for compiling images directly into programs. + +.SH INVOCATION + +\fBgdk-pixbuf-csource\fP either takes as input one image file name to generate code +for, or, using the \fI--build-list\fP option, a list of (\fIname\fP, \fIimage\fP) +pairs to generate code for a list of images into named variables. + +.SS Options +.TP +\fI--stream +Generate pixbuf data stream (a single string containing a serialized +GdkPixdata structure in network byte order). + +.TP +\fI--struct +Generate GdkPixdata structure (needs the GdkPixdata structure definition from +gdk-pixdata.h). + +.TP +\fI--macros +Generate *_ROWSTRIDE, *_WIDTH, *_HEIGHT, *_BYTES_PER_PIXEL and +*_RLE_PIXEL_DATA or *_PIXEL_DATA macro definitions for the image. + +.TP +\fI--rle +Enables run length encoding for the generated pixel data (default). + +.TP +\fI--raw +Disables run length encoding for the generated pixel data (default). + +.TP +\fI--extern +Generate extern symbols. + +.TP +\fI--static +Generate static symbols (default). + +.TP +\fI--decoder +Provide a *_RUN_LENGTH_DECODE(image_buf, rle_data, size, bpp) macro definition +to decode run-length encoded image data. + +.TP +\fI--name=identifier +Specifies the identifier name (prefix) for the generated variable or +macros (usefull only if \fI--build-list\fP was not specified). + +.TP +\fI--build-list +Enables (\fIname\fP, \fIimage\fP) pair parsing mode. + +.TP +\fI-h, --help\fP +Print brief help and exit. + +.TP +\fI-v, --version\fP +Print version and exit. + +.TP +\fI--g-fatal-warnings +Make warnings fatal (causes the program to abort). + +.PP + +.SH SEE ALSO +The \fIGdkPixbuf\fP documentation, shipped with the \fIGtk+\fP distribution, +available from \fIhttp://www.gtk.org\fP. + +.SH BUGS +None known yet. + +.SH AUTHOR +.B gdk-pixbuf-csource +was written by Tim Janik <timj@gtk.org>. +.PP +This manual page was provided by Tim Janik <timj@gtk.org>. |