g2 Documentation

0.7x

License Notice

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *

Copyright (C) 1998-2004 Ljubomir Milanovic & Horst Wagner.

Introduction

What is g2 ?

Short version (if you are in hurry)

Long version

g2 is a simple to use graphics library for 2D graphical applications written in Ansi-C. It provides a comprehensive set of functions for simultaneous generation of graphical output on different types of devices. Currently, the following devices are supported by g2: X11, PostScript, gd (PNG and JPEG), FIG and MS Windows. One major feature of the g2 library is the concept of virtual devices. An arbitrary number of physical devices (such as PostScript or X11) can be grouped to create a so-called virtual device. Commands sent to such a virtual device are automatically issued to all attached physical devices. This allows for example simultaneous output to a PNG file and a PostScript file. A virtual device in turn can be attached to another virtual device, allowing to construct trees of devices. Virtual devices can also be useful when using different user-coordinate systems. E.g. one X11 window showing an overview of a graphical output, and a second window showing a zoom of a more detailed area of the graphic. Drawing in both windows is performed by one single command to the virtual device.

                                   /-------> PNG:   g2_attach(id_PNG,..
            ----------------------- 
g2_plot---> | Virtual device: id  |--------> X11:   g2_attach(id_X11,...
            -----------------------
                                   \-------> PS:    g2_attach(id_PS,...

If you don't need or like the concept of virtual devices, simply ignore it.

Getting Started

Preinstallation tasks:

PNG and JPEG support

g2 uses the gd library by Thomas Boutell to generate PNG and JPEG files. This package is freeware (however, not GPL) and can be downloaded at http://www.boutell.com/gd/. Linux users might prefer to install a pre-compiled gd rpm package which should be available at your local RedHat mirror site. NT users should install the gd source package in a subdirectory named "gd" which should be located in the same directory as the g2 subdirectory (but not in the g2 directory itself). Otherwise, file locations for gd must be modified in the g2 project workspace. Unix and VMS users will have to build and install gd according to the instructions found in the gd distribution.

Installation

Linux

  1. Either install RPM packet with binaries, or compile as described in the Unix section

Unix

  1. Extract package with gzip -dc g2-xxxx.tar.gz | tar xvf -
  2. Run ./configure
  3. Optionally run make depend
  4. Run make
  5. Run make install, or copy libg2.a/so and g2.h, g2_X11.h, g2_PS.h, g2_gd.h and g2_FIG.h to the default locations for library and include files
  6. Optionally cd to demo directory and run make

Windows NT

  1. Extract package using either the .tar.gz or the .zip distribution
  2. MS Visual C++ users can build both library and demos with the supplied project file: g2.dsw (to obtain an icon and use menu functions, you must also build the g2res project in g2.dsw)
  3. Users of gcc or other commandline based compilers with make support continue as in Unix example
  4. It is also possible to compile g2 on winNT/95 using the free cygwin32 library and a X-windows library for Windows. Theoretically it should be possible to support both X-windows and native NT/95 windows at the same time.

Perl (old instructions)

  1. Change to directory g2_perl
  2. Perform following steps
  3. See the Perl interface section for more information

Python

  1. Make sure you have Python installed (note: SWIG is not needed)
  2. Build g2 as described above (see Installation)
  3. Change to directory g2_python
  4. Type
  5. If you link your g2 Python module against libg2.so, and you are unwilling or unable to do an install, you need to tell the g2 Python module where to look for it, either with ldconfig, or with the LD_LIBRARY_PATH environment variable
  6. See the Python interface section for more information

VMS

  1. Try to extract either the .tar.gz or the .zip distribution (whatever is easier for you)
  2. Type mms to compile library (descrip.mms file is supplied)
  3. Run mms in demo directory to compile demo applications

A simple example

The following example is a minimal application. It draws a rectangle in a PostScript file.

#include <g2.h>
#include <g2_PS.h>

main()
{
    int id;
    id = g2_open_PS("rect.ps", g2_A4, g2_PS_land); 
    g2_rectangle(id, 20, 20, 150, 150); 
    g2_close(id);
}

You want to draw a PNG file instead of a PostScript file ? Replace the PS header file with

#include <g2_gd.h>

and replace the call to g2_open_PS() with

id = g2_open_gd("rect.png", 300, 200, g2_gd_png);

You want to draw to a PNG file and a PostScript file with one plot command ?

Here we use the concept of virtual devices. Open a PNG and a PostScript device, then open a virtual device and attach both the PNG and PostScript device to the virtual device. Plot commands to the virtual device will be issued to both the PNG and the PostScript device. You can attach and detach further devices at any time.

#include <g2.h>
#include <g2_PS.h>
#include <g2_gd.h>

main()
{
    int id_PS,id_PNG,id;

    id_PS  = g2_open_PS("rect.ps", g2_A4, g2_PS_land);
    id_PNG = g2_open_gd("rect.png", 300, 200, g2_gd_png);
    id     = g2_open_vd();

    g2_attach(id, id_PS);
    g2_attach(id, id_PNG);

    g2_rectangle(id, 20, 20, 150, 150);
    g2_circle(id, 50, 60, 100);

    g2_close(id);
}

Note: closing a virtual device automatically closes all attached devices.

More examples

More examples showing the usage of different user coordinate systems, multiple virtual devices, splines, etc. can be found in the distribution (demo directory).

Fortran interface

The Fortran interface for g2 has currently been tested on Linux and Digital Unix/OSF. Function names for Fortran are the same as in C, however the following differences exist:

A short Fortran example:

        program demo
        real d,color
        d=g2_open_PS('demo_f.ps', 4.0, 1.0)
        call g2_plot(d, 50.0, 50.0)
        call g2_string(d, 25.0, 75.0, 'TEST ')
        color=g2_ink(d, 1.0, 0.0, 0.0)
        write (6,*) color
        call g2_pen(d, color)
        call g2_circle(d, 20.0, 20.0, 10.0)
        call g2_flush(d)
        call g2_close(d)
        stop
        end

Perl interface (old info)

The Perl interface for g2 has currently been tested on Linux and Digital Unix/OSF. Function names in Perl are the same as in C, however the device itself is implemented object oriented, i.e. the device argument is omitted in all functions. Cf. the following simple Perl script:

use G2;

$d = newX11 G2::Device(100,100);
$d->circle(10, 10, 20);
$d->string(20, 40, "Hello World");

print "\nDone.\n[Enter]\n";
getc(STDIN);

$d->close()

The creator functions are newX11, newGIF, newPS, etc. and accept the same arguments as the open functions in the C version. See the Perl documentation (perldoc G2) for more details and the test.pl script for a more extensive example.

Python interface

Function names in Python are the same as in C, however the device itself is implemented object oriented, i.e. the device argument is omitted in all methods. An object is instantiated with one of the g2_open_ functions. Here is a simple Python script:

import sys
from g2 import *
X11 = g2_open_X11(822, 575)
PS = g2_open_PS('foo.ps', g2_A4, g2_PS_land)
graph = g2_open_vd()
graph.g2_attach(X11)
graph.g2_attach(PS)
graph.g2_line(30, 30, 90, 90)
graph.g2_circle(60, 60, 30)
X11.g2_pen(X11.g2_ink(.75, .2, 0))
graph.g2_polygon([60, 30, 30, 60, 60, 90, 90, 60])
graph.g2_set_dash([20, 12])
sqrts = [100, 100, 225, 150, 400, 200, 625, 250]
graph.g2_poly_line(sqrts)
graph.g2_image(640, 252, [[2, 4, 6],[3, 6, 9],[4, 8, 12]])
graph.g2_flush()
print 'Done.\n[Enter]'
sys.stdin.read(1)
graph.g2_close()

In C, many functions expect a pointer to a buffer of double's and an int stating the number of points in this buffer. In Python, these functions are passed just a list of floats. You need not specify the number of points: Python knows the length of the list.

Full documentation, including sample code, is available from the interactive Python prompt:

$ python
>>> import g2
>>> help(g2)

Here functions with a Python specific form (e.g. g2_query_pointer()) are marked as such.

Contact

You can contact the authors and contributors by e-mail (/ is @ and - is .):

or visit the g2 home page on: http://g2.sourceforge.net/


Generated on Tue Oct 17 21:27:48 2006 for g2 by  doxygen 1.4.6