• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

tests/H03-May-2022-2,3621,947

AUTHORSH A D15-Feb-20190

COPYINGH A D15-Feb-201924.8 KiB482399

ChangeLogH A D15-Feb-20192.2 KiB4639

INSTALLH A D15-Feb-201932 63

Makefile.amH A D05-Apr-20202 KiB10278

Makefile.inH A D03-May-202235.5 KiB1,034932

NEWSH A D15-Feb-20191.1 KiB3521

READMEH A D15-Feb-2019843 3419

TODOH A D15-Feb-2019218 65

alpha_combine.cH A D15-Feb-20191.8 KiB6840

color.cH A D15-Feb-20192.6 KiB12991

context.cH A D05-Apr-202018 KiB717538

convert.cH A D15-Feb-201925.7 KiB1,060791

convert.hH A D15-Feb-20191.2 KiB404

convolve.cH A D15-Feb-20192.9 KiB14396

draw.cH A D15-Feb-201911.4 KiB503394

flip.cH A D15-Feb-20193.4 KiB163108

gradient.cH A D05-Apr-202012.1 KiB500357

imgformat.hH A D15-Feb-20192.1 KiB9538

load.cH A D15-Feb-20198.8 KiB390271

load_gif.cH A D15-Feb-20195 KiB231165

load_jpeg.cH A D05-Apr-20205.4 KiB196104

load_magick.cH A D05-Apr-20202.8 KiB12470

load_png.cH A D05-Apr-20205.1 KiB219155

load_ppm.cH A D15-Feb-20198 KiB391285

load_tiff.cH A D15-Feb-20193 KiB14290

load_webp.cH A D15-Feb-20193.6 KiB13997

load_xpm.cH A D15-Feb-20194.2 KiB179135

load_xpm_normalized.cH A D15-Feb-20199.8 KiB458350

misc.cH A D15-Feb-20196.3 KiB258194

raster.cH A D15-Feb-201913.6 KiB639506

rotate.cH A D15-Feb-20198.3 KiB434296

rotate.hH A D15-Feb-2019881 314

save.cH A D15-Feb-20191.3 KiB4619

save_xpm.cH A D15-Feb-20195.6 KiB282181

scale.cH A D15-Feb-201911 KiB498362

scale.hH A D15-Feb-2019917 314

wraster.hH A D15-Feb-201913.6 KiB512249

xpixmap.cH A D15-Feb-20194.4 KiB182135

xutil.cH A D15-Feb-20196.6 KiB262198

xutil.hH A D15-Feb-2019869 306

README

1
2WindowMaker raster graphics library
3
4This library is used to manipulate images and convert them to
5a format that can be displayed through the X window system.
6Read the wraster.h header for an idea of what is available
7
8
9This Library is LGPL and
10Copyright (c) Alfredo K. Kojima <kojima@inf.ufrgs.br>
11
12
13The following environment variables control some parameters:
14
15RIMAGE_CACHE <integer>
16
17Is the maximum number of images to store in the internal cache.
18Default is 8
19
20RIMAGE_CACHE_SIZE <integer>
21
22Is the size of the biggest image to store in the cache.
23Default is 4k (64x64)
24
25
26
27Porting
28=======
29
30It should be fairly easy to port it to other environments
31(svgalib, libggi etc), probably only requiring wraster.h,
32context.c and convert.c to be changed. Note that the X specific
33code should be disabled in that case, including support for libXpm.
34