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