]> git.imager.perl.org - imager.git/blob - TODO
an idea
[imager.git] / TODO
1                          *** TODO ***
2                         
3
4
5 Iolayer:
6 - Add scalar/mmap to iolayer
7 - Add close() code to iolayer
8 - Merge callback interface into iolayer
9 - Add interface for writing to all formats but tiff
10 - Add interface for reading for png (started), 
11   gif (merge with cb patch), ppm and raw
12 - Add new tests once all formats support io_layer
13 - Implment the maxread threshold (Indicates how far 
14   a library can read before it indicates that it's done).
15
16 Enhanched internal structure:
17
18 MultiImage & metadata support:
19 - Figure what interface should be between C and perl?
20 - How to store data in the C interface for tags/metadata?
21   Support tiff's madness, i.e. tags and options.
22 - Error handling, make a general i_errstr object and arrange
23   such that each image has an i_errstr object to hold its
24   local errors?
25 - SEE design/represent.txt for proposed new structure and
26   interface design that takes these factors into account.
27 - define common i_* tags for specifying attribute common among images
28   like spatial resolution (implement for other image types, especially 
29   TIFF)
30
31 New Features:
32 - Add mng support.
33
34 - Transforms, interpolated multidimensional lookup tables.
35   Usefull for CMYK <-> RGB table lookup.
36
37 - Finish antialiased filled polygon function.
38
39 - advanced font layout (spacing, kerning, alignment) (sky)
40
41 - ways to check if characters are present in a font, eg. checking if
42   ligatures are present
43
44 - font synthesis - synthesize a bold or slanted font from a normal font
45   (or even from an existing bold or slanted font)
46
47 - utf8 support for text output
48   (available for freetype2)
49
50 - image rotation, 3 ways of doing rotation:
51   - rotation by shearing, which produces makes lengths in the image larger,
52     but could be useful
53   (2 of the 3 have been done)
54
55 - read_multi() needs to handle other multi-image types, such as TIFF 
56   (probably the most common)
57
58 - compose channels - build a new image based on channels from several
59   images
60
61 Clean up:
62 - Make sure everything is doable with the OO interface
63   i_flood_fill() for example.
64
65 - Compile with memory debugging enabled and fix all leaks
66
67 - dynaload.c is strongly tied to perl
68
69 - Add mycalloc() and myrealloc() to the malloc() wrappers.
70
71 - should we overload <=> or cmp for Imager::Color objects?
72   too many worms, leave it out
73
74 - should the interlace option for reading raw images have 
75   symbolic names in the OO interface?
76
77 - improve consistency in the interfaces, both in trying to use named
78   parameters where possible but also in using consistent names, eg.
79   (tx, ty) vs (left, top) in rubthrough() vs paste().  Do we want a (simple)
80   standard for this (suggested names)?  Remember to preserve the old 
81   interface where possible.
82
83 Format specific issues:
84 - provide patches for libgif and libungif that fix their bugs
85   and give a useful extension interface.  Probe for the 
86   installation of the patches in Makefile.PL to let gif.c
87   know what features it can use.
88
89 - Add options for pnm, writer to save in any of the p1..P6
90   formats.  Even if the input has 1 channel, write 3 and such
91   cases.  Also allow ascii mode.  Need to be able to write 
92   pbm images which needs ties to the quantization code.
93
94 - pcx and targa image formats
95
96 - aalib support
97
98 - save other formats as paletted for paletted where that's supported
99
100 - read other format paletted images as paletted images
101
102 - have jpeg.c write 2 or 4 channel images as 1 or 3 channels respectively
103
104
105 Documentation:
106 - Add to the documentation
107 - Write a tutorial?
108 - sample code and Imager/Samples.pod describing them
109 - Imager/Cookbook.pod
110 - modify the .pm files to put pod describing a function close to the 
111   function
112 - Write a guide to installing the helper libraries
113 - Go through the entire project and add comments in pod
114   so doco.perl can be used to read them.