projects
/
Photo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
a18ca54
)
Bugfixe : valeur par défaut quand l'orientation n'est pas dispo.
master
author
Benoît Pin
<benoit.pin@gmail.com>
Fri, 22 Oct 2010 17:50:44 +0000
(19:50 +0200)
committer
Benoît Pin
<benoit.pin@gmail.com>
Fri, 22 Oct 2010 17:50:44 +0000
(19:50 +0200)
Photo.py
patch
|
blob
|
history
TileSupport.py
patch
|
blob
|
history
diff --git
a/Photo.py
b/Photo.py
index
2161eaf
..
68b67f3
100755
(executable)
--- a/
Photo.py
+++ b/
Photo.py
@@
-194,7
+194,7
@@
class Photo(Image, TileSupport, Metadata):
def _rotateOrFlip(self, im) :
orientation = self.tiffOrientation()
def _rotateOrFlip(self, im) :
orientation = self.tiffOrientation()
- rotation, flip = TIFF_ORIENTATIONS
[orientation]
+ rotation, flip = TIFF_ORIENTATIONS
.get(orientation, (0, False))
if rotation :
im = im.rotate(-rotation)
if flip :
if rotation :
im = im.rotate(-rotation)
if flip :
diff --git
a/TileSupport.py
b/TileSupport.py
index
905b0f4
..
1dd9c0f
100644
(file)
--- a/
TileSupport.py
+++ b/
TileSupport.py
@@
-92,7
+92,7
@@
class TileSupport :
f = bf.open('r')
orientation = self.tiffOrientation()
f = bf.open('r')
orientation = self.tiffOrientation()
- rotation, flip = TIFF_ORIENTATIONS
[orientation]
+ rotation, flip = TIFF_ORIENTATIONS
.get(orientation, (0, False))
if rotation and flip :
tf = TemporaryFile(mode='w+')
if rotation and flip :
tf = TemporaryFile(mode='w+')