Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / lsolesen / pel / TODO
1 TODO file for PEL: PHP Exif Library.  A library with support for
2 reading and writing Exif headers in JPEG and TIFF images using PHP.
3
4 Copyright (C) 2004, 2005, 2006  Martin Geisler.
5 Licensed under the GNU GPL, see COPYING for details.
6
7
8 TODO List for PEL
9 *****************
10
11 In addition to the following list, then the source contains a number
12 of comments beginning with `TODO' and `FIXME' which marks extra places
13 where attention is needed.
14
15 The list has been roughly ordered by priority and the release
16 targeted.
17
18
19 PEL Version 1.0
20 ---------------
21
22 * Add convenience functions.
23    It would be nice to have functions that could give you a particular
24    entry or the embedded thumbnail with just one function call.
25    Manually traversing the directory structure (and repeatedly
26    checking for null pointers) requires too big a knowledge of the
27    structure of JPEG, TIFF, and Exif formats.
28
29
30 PEL Version 1.x
31 ---------------
32
33 * Only load necessary data.
34    SF #1210126: instead of parsing the entire JPEG/TIFF image, we
35    should load data as necessary.  This will save memory with big
36    images.
37
38 * Interpret the MakerNotes.
39    The libexif project already has code for interpretating the
40    MakerNotes for a number of different camera models.
41
42 * Handle character encodings of the USER_COMMENT tag.
43    The first eight bytes store the character encoding, but PEL ignores
44    them for now.  Using the Multibyte String PHP extension we should
45    be able to convert the data.
46
47 * Deal with characters outside Latin-1 in PelEntryWindowsString.
48    This needs testing from people running Windows XP set to a locale
49    different from Latin-1.
50
51
52 PEL Version 2.0
53 ---------------
54
55 * Restructure information about tags.
56    Currently information about the tags are stored in several places
57    around the code, making updates difficult.  All information about a
58    tag should be stored at one place, maybe by having a class per tag
59    (how well does PHP handle 142 small classes?).
60
61    The information in question is:
62
63    - hex code,
64    - title,
65    - name,
66    - description
67    - format,
68    - components,
69    - valid IFD types,
70    - how to load data,
71    - how to display (the getText() method)
72
73    This will most likely break API compatability and is delayed for
74    PEL 2.