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).
17 Enhanched internal structure:
19 MultiImage & metadata support:
20 - Figure what interface should be between C and perl?
21 - How to store data in the C interface for tags/metadata?
22 Support tiff's madness, i.e. tags and options.
23 - Error handling, make a general i_errstr object and arrange
24 such that each image has an i_errstr object to hold its
26 - SEE design/represent.txt for proposed new structure and
27 interface design that takes these factors into account.
32 - Transforms, interpolated multidimensional lookup tables.
33 Usefull for CMYK <-> RGB table lookup.
35 - Finish antialiased filled polygon function.
39 - Make sure everything is doable with the OO interface
40 i_flood_fill() for example.
41 - Split the other classes into seperate files
42 Imager::Font::TT, Imager::Font::T1, currently
43 an if statement is used to choose what code to
45 - Compile with memory debugging enabled and fix all leaks
47 - dynaload.c is strongly tied to perl
49 - Add mycalloc() and myrealloc() to the malloc() wrappers.
51 - should we overload <=> or cmp for Imager::Color objects?
52 too many worms, leave it out
54 - should the interlace option for reading raw images have
55 symbolic names in the OO interface?
59 Format specific issues:
60 - should i_readgif returned colormap be an arrayref of
61 Imager::Color objects? Note that this will break
62 compatibility with previous releases.
64 - if gif_delays is a number instead of an arrayref, use that
67 - provide patches for libgif and libungif that fix their bugs
68 and give a useful extension interface. Probe for the
69 installation of the patches in Makefile.PL to let gif.c
70 know what features it can use.
72 - Add options for pnm, writer to save in any of the p1..P6
73 formats. Even if the input has 1 channel, write 3 and such
74 cases. Also allow ascii mode. Need to be able to write
75 pbm images which needs ties to the quantization code.
79 - Add to the documentation
81 - Write a guide to installing the helper libraries
82 - Go through the entire project and add comments in pod
83 so doco.perl can be used to read them.