more to do.
[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     * lossless image file formats
20     * dashed lines
21     * (type 3 and truetype fonts)
22     Bugs:
23     * big jpegs sometimes have wrong colors
24
25 Make pdf2swf faster:
26
27     * Embedded fonts which are used more than once are also converted more
28       than once. Implement a font cache, like the one in xpdf. (font->getID().num
29       seems to be unique for every font)
30
31 Do some sample swfs for swfcombine:
32
33     * Some swf for displaying other swfs frame by frame (e.g. with next/previous
34       buttons) would be very handy for swfs generated by pdf2swf
35
36 General Improvements:
37
38     * temporary file name generation is broken: pdf2swf/pdf2swf.cc, pdf2swf/xpdf/gfile.cc
39     * fix memory leaks
40     * rfxswf: modules/swfshape doesn't allow changing to fillstyle 0
41     * write manpages for swfstrings and swfdump
42     * --version should work in all tools.
43
44 Cleanups in rfxswf-lib:
45     
46     * LPTAGs etc. should be TAG*s
47     * function names should have a prefix (rfxswf_ or swflib_ or sth.)
48     * GetMatrix should be named GetMATRIX, as it gets a MATRIX datatype. Same for CXFORM etc.