| 1 |
NOTES |
|---|
| 2 |
|
|---|
| 3 |
Expand gm.thumb to return the date taken as well for use in sorting |
|---|
| 4 |
MySQL format would be nice, as that is string-sortable |
|---|
| 5 |
|
|---|
| 6 |
Offer a preference to not create thumbnails in the name of speed |
|---|
| 7 |
Accomplish this with special case param of thumbSize = 0 to gm.thumb |
|---|
| 8 |
This will still return the date taken but will not actually do the thumbing |
|---|
| 9 |
|
|---|
| 10 |
As of 8-21-2007 |
|---|
| 11 |
Thumbing 127 8 MP JPEGs |
|---|
| 12 |
Uploadr 3 Mac 97 seconds |
|---|
| 13 |
Uploadr 3 Win 278 seconds |
|---|
| 14 |
Uploadr 2.5 Win 312 seconds |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
9-7-2007 meeting with Gino & Stewart |
|---|
| 19 |
|
|---|
| 20 |
Make sure it's smart when network drops |
|---|
| 21 |
*** Partial batch tagging - tag a >1 photo selection all at once - append to individual tags |
|---|
| 22 |
Tooltips on toolbar buttons |
|---|
| 23 |
Save state of unuploaded photos on exit |
|---|
| 24 |
Tabs for batches (two total - the uploading batch and the editing batch) |
|---|
| 25 |
When you start upload, create a new tab for the next batch |
|---|
| 26 |
jUploadr/Chronic style photo progress indication |
|---|
| 27 |
User must DO SOMETHING to get to the new batch once uploading starts (button to switch tabs) |
|---|
| 28 |
Ordering options instead of a default |
|---|
| 29 |
Date taken (fallback to alpha if date taken not available) |
|---|
| 30 |
Let me order them |
|---|
| 31 |
Reverse the current thing |
|---|
| 32 |
|
|---|
| 33 |
Twiki page! |
|---|
| 34 |
|
|---|
| 35 |
Look into embedding Flash into the Uploadr - Picnik |
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
Drag selecting photos |
|---|
| 40 |
I couldn't figure out any way other than hardcoding the offsets to make the box actually |
|---|
| 41 |
track the cursor. document.getElementById('photos').offsetTop isn't set?! |
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
9-12-2007 meeting with Gino & Stewart |
|---|
| 46 |
|
|---|
| 47 |
Partial batch metadata |
|---|
| 48 |
Overwrite titles always |
|---|
| 49 |
Append to description always (prefix with \n\n) |
|---|
| 50 |
Could have a pref for append/overwrite for description - nah |
|---|
| 51 |
Confirmation on clicking save |
|---|
| 52 |
*** Make blank title or description not overwrite each photo *** |
|---|
| 53 |
Do all partial batches like the changed_* checks in settings.js |
|---|
| 54 |
"Leave unchanged" checkbox for privacy metadata that unchecks if they change something |
|---|
| 55 |
Re-adding to a batch after failure |
|---|
| 56 |
Preserve order in the queue, which is the order they wanted |
|---|
| 57 |
Add add-to-set option for each photo and for partial batches |
|---|
| 58 |
Nix the per-photo resize options |
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
In case we ever want to set PROPER EXIF orientation rather than actually rotating pixels, |
|---|
| 63 |
here is the C code: |
|---|
| 64 |
|
|---|
| 65 |
long orient = exif["Exif.Image.Orientation"].toLong(); |
|---|
| 66 |
if (1 > orient || 8 < orient) { |
|---|
| 67 |
orient = 1; |
|---|
| 68 |
} |
|---|
| 69 |
switch (orient) { |
|---|
| 70 |
case 1: |
|---|
| 71 |
if (90 == degrees) { |
|---|
| 72 |
orient = 6; |
|---|
| 73 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 74 |
orient = 8; |
|---|
| 75 |
} |
|---|
| 76 |
break; |
|---|
| 77 |
case 2: |
|---|
| 78 |
if (90 == degrees) { |
|---|
| 79 |
orient = 5; |
|---|
| 80 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 81 |
orient = 7; |
|---|
| 82 |
} |
|---|
| 83 |
break; |
|---|
| 84 |
case 3: |
|---|
| 85 |
if (90 == degrees) { |
|---|
| 86 |
orient = 8; |
|---|
| 87 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 88 |
orient = 6; |
|---|
| 89 |
} |
|---|
| 90 |
break; |
|---|
| 91 |
case 4: |
|---|
| 92 |
if (90 == degrees) { |
|---|
| 93 |
orient = 7; |
|---|
| 94 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 95 |
orient = 5; |
|---|
| 96 |
} |
|---|
| 97 |
break; |
|---|
| 98 |
case 5: |
|---|
| 99 |
if (90 == degrees) { |
|---|
| 100 |
orient = 4; |
|---|
| 101 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 102 |
orient = 2; |
|---|
| 103 |
} |
|---|
| 104 |
break; |
|---|
| 105 |
case 6: |
|---|
| 106 |
if (90 == degrees) { |
|---|
| 107 |
orient = 3; |
|---|
| 108 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 109 |
orient = 1; |
|---|
| 110 |
} |
|---|
| 111 |
break; |
|---|
| 112 |
case 7: |
|---|
| 113 |
if (90 == degrees) { |
|---|
| 114 |
orient = 2; |
|---|
| 115 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 116 |
orient = 4; |
|---|
| 117 |
} |
|---|
| 118 |
break; |
|---|
| 119 |
case 8: |
|---|
| 120 |
if (90 == degrees) { |
|---|
| 121 |
orient = 1; |
|---|
| 122 |
} else if (-90 == degrees || 270 == degrees) { |
|---|
| 123 |
orient = 3; |
|---|
| 124 |
} |
|---|
| 125 |
break; |
|---|
| 126 |
default: |
|---|
| 127 |
break; |
|---|
| 128 |
} |
|---|
| 129 |
exif["Exif.Image.Orientation"] = uint32_t(orient); |
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 |
Rough speed tests 2007-10-31 |
|---|
| 134 |
Thumbing 7 photos |
|---|
| 135 |
Uploadr 2.3 Mac 3s |
|---|
| 136 |
Uploadr 3.0 Mac 5s |
|---|
| 137 |
Uploadr 2.3 PPC 7s |
|---|
| 138 |
Uploadr 3.0 PPC s |
|---|
| 139 |
Uploadr 2.5 Win 7s |
|---|
| 140 |
Uploadr 3.0 Win 13s |
|---|