Initial revision
[swftools.git] / TODO
1 Priorities:
2 1. Make the swfs that pdf2swf generates smaller
3 2. Make pdf2swf faster
4 3. General improvements
5 4. Make pdf2swf cope with more complex pdfs
6 5. Do some sample swfs for swfcombine 
7 6. Cleanups in rfxswf-lib.
8
9 Make the swfs pdf2swf generates smaller:
10
11     * At the moment, the output of pdf2swf is a bunch of
12       polygons. Try using seperate shapes for each character,
13       and packing all shapes of a page in a font. 
14
15 Make pdf2swf cope with more complex pdfs:
16
17     The following pdf properties are not yet dealt with:
18     * Links
19     * dashed lines
20     * (type 3 and truetype fonts)
21
22 Make pdf2swf faster:
23
24     * Embedded fonts which are used more than once are also converted more
25       than once. Implement a font cache, like the one in xpdf. (font->getID().num
26       seems to be unique for every font)
27
28 Do some sample swfs for swfcombine:
29
30     * Some swf for displaying other swfs frame by frame (e.g. with next/previous
31       buttons) would be very handy for swfs generated by pdf2swf
32
33 General Improvements:
34
35     * temporary file name generation is broken: pdf2swf/pdf2swf.cc, pdf2swf/xpdf/gfile.cc
36     * fix memory leaks
37     * rfxswf: modules/swfshape doesn't allow changing to fillstyle 0
38     * big jpegs sometimes have wrong colors
39     * write manpages for swfstrings and swfdump
40     * --version should work in all tools.
41
42 Cleanups in rfxswf-lib:
43     
44     * LPTAGs etc. should be TAG*s
45     * function names should have a prefix (rfxswf_ or swflib_ or sth.)
46     * GetMatrix should be named GetMATRIX, as it gets a MATRIX datatype. Same for CXFORM etc.