Go to file
Kim Woelders 503e8527c3 Add lzma loader 2021-12-28 16:08:06 +01:00
data Only set MAINTAINERCLEANFILES in top-level Makefile.am 2021-11-29 17:37:20 +01:00
doc Update doc for imlib_load_image_fd() 2021-12-06 07:08:06 +01:00
m4 Add feature to build with ASAN (--enable-gcc-asan) 2021-07-13 08:55:33 +02:00
misc Add script to generate Changelog 2021-09-16 10:53:29 +02:00
src Add lzma loader 2021-12-28 16:08:06 +01:00
test Add lzma loader 2021-12-28 16:08:06 +01:00
.gitignore Drop imlib2-config (use pkg-config) 2021-09-19 13:12:20 +02:00
.indent.pro
AUTHORS
COPYING
COPYING-PLAIN
ChangeLog 1.7.5 2021-12-06 07:26:23 +01:00
Doxyfile
INSTALL
Makefile.am Only set MAINTAINERCLEANFILES in top-level Makefile.am 2021-11-29 17:37:20 +01:00
README.ID3
README.in
TODO
autogen.sh autogen.sh: Add -n as alternative to NOCONFIGURE 2020-01-11 12:56:43 +01:00
configure.ac Add lzma loader 2021-12-28 16:08:06 +01:00
gendoc
imlib2.c.in Drop imlib2-config (use pkg-config) 2021-09-19 13:12:20 +02:00
imlib2.pc.in
imlib2.spec.in Drop imlib2-config (use pkg-config) 2021-09-19 13:12:20 +02:00

README.in

Imlib2 @VERSION@

This is the Imlib 2 library - a library that does image file loading and
saving as well as rendering, manipulation, arbitrary polygon support, etc.

It does ALL of these operations FAST. Imlib2 also tries to be highly
intelligent about doing them, so writing naive programs can be done
easily, without sacrificing speed.

This is a complete rewrite over the Imlib 1.x series. The architecture is
more modular, simple, and flexible. See index.html in the doc/ directory
for more information.

Imlib2 requires several libraries to be already installed. These are:

libjpeg          http://www.ijg.org/
libpng           http://www.libpng.org/pub/png/libpng.html
freetype 2.1.x   http://www.freetype.org/

For examples of this library in use, seek:

Eterm            http://www.eterm.org/ (CVS version only, currently)
feh              http://www.linuxbrit.co.uk/feh.html
geist            http://www.linuxbrit.co.uk/geist.html

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(as root unless youa re installing in your users directories):
  make install
      
------------------------------------------------------------------------------
BUILDING PACKAGES:

RPM: To build rpm packages:
  
  sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz

You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
for more details)

DEB: To build deb packages:

  tar zvf @PACKAGE@-@VERSION@.tar.gz
  cd @PACKAGE@-@VERSION@
  dpkg-buildpackage -us -uc -rfakeroot
  cd ..
  rm -rf @PACKAGE@-@VERSION@

You will find all the debian source, binary etc. packages put in the directory
where you first untarred the source tarball.