File: README

package info (click to toggle)
python-gd 0.52debian-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 140 kB
  • ctags: 151
  • sloc: ansic: 1,605; python: 157; makefile: 50
file content (33 lines) | stat: -rw-r--r-- 1,259 bytes parent folder | download | duplicates (3)
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
Python GD Module README

--------------------------------------------------------------------------
This module is

    Copyright 1995 Richard Jones
    Bureau of Meteorology Australia.
    richard@bofh.asn.au

With Richard's blessing, I have taken over support for this module;
so, send all bug reports, etc. to chris.gonnerman@newcenturycomputers.net
--------------------------------------------------------------------------

GD module is an interface to the GD library written by Thomas Boutell. 

    gd is a graphics library. It allows your code to quickly draw images 
    complete with lines, arcs, text, multiple colors, cut and paste from 
    other images, and flood fills, and write out the result as a PNG or 
    JPEG file. This is particularly useful in World Wide Web applications,
    where PNG and JPEG are two of the formats accepted for inline images
    by most browsers.

The GD library must be version 2.0.8 or higher (or you must choose version
0.40 or earlier of this module, which supports 1.8.3 or higher).

The official home page of GD is currently:

    http://www.boutell.com/gd/

gdmodule has been extended in some ways from the original GD library. 

--------------------------------------------------------------------------