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

..03-May-2022-

src/H03-May-2022-9,1766,606

AUTHORSH A D23-Oct-200255 32

COPYINGH A D23-Oct-200224.7 KiB483400

ChangeLogH A D15-Jun-200547.7 KiB1,5471,059

INSTALLH A D29-Sep-20049.1 KiB232176

Makefile.amH A D13-Feb-20051.8 KiB6043

Makefile.inH A D03-May-202222 KiB699610

NEWSH A D15-Jun-20052.6 KiB9058

READMEH A D06-Dec-20031,008 3326

TODOH A D06-Dec-20035.4 KiB170148

aclocal.m4H A D15-Jun-2005251.3 KiB7,1916,398

config.guessH A D11-Apr-200541.1 KiB1,4121,215

config.h.inH A D15-Jun-20051.4 KiB5637

config.subH A D11-Apr-200529.5 KiB1,5011,360

configureH A D15-Jun-2005695.3 KiB22,17417,916

configure.inH A D15-Jun-20052.1 KiB8363

depcompH A D29-Sep-200413.5 KiB480304

install-shH A D29-Sep-20049 KiB323188

libsvg.pc.inH A D17-Feb-2005253 1210

libsvg.spec.inH A D23-Oct-20023.1 KiB12694

ltmain.shH A D11-Apr-2005180.9 KiB6,4615,088

missingH A D29-Sep-200410.3 KiB354266

README

1libsvg - a library for SVG files
2
3Description
4-----------
5libsvg provides a parser for SVG content in files or buffers.
6
7Dependencies
8------------
9libsvg depends on libxml2, and should be easy to build on any
10reasonable system.
11
12Usage
13-----
14libsvg does not do any rendering, but instead provides a
15function-based interface that can be used by various rendering
16engines. See the declaration of svg_render_engine_t in svg.h.
17
18It is anticipated that the primary uses of libsvg would be in small
19libraries that connect the libsvg parser to a rendering engine. Those
20libraries, in turn, would provide the capability to applications to
21directly render SVG content from files or buffers.
22
23Known uses
24----------
25At this time, the only known library using libsvg is libsvg-cairo which
26uses the cairo graphics library. A port of librsvg, (using libart), to
27use libsvg is expected.
28
29History
30-------
31libsvg was developed by Carl Worth <cworth@isi.edu>
32libsvg was based on code from librsvg by Raph Levien <raph@acm.org>
33