diff options
author | Andreas Brachold <vdr07@deltab.de> | 2006-01-01 11:22:23 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2006-01-01 11:22:23 +0000 |
commit | 02f7ef06dbd8a6335f6da13cba8a390d356b7dca (patch) | |
tree | f86f6663b8cba6f6170939b4892a74f2280ba00d | |
parent | d69c2f9ea1af43e4edb31c47a410d5bc131735f8 (diff) | |
download | vdr-plugin-image-02f7ef06dbd8a6335f6da13cba8a390d356b7dca.tar.gz vdr-plugin-image-02f7ef06dbd8a6335f6da13cba8a390d356b7dca.tar.bz2 |
- add contrib/show-raw-digital-photo.patch for anytopnm to show raw digital photo from many digital cameras.
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | contrib/README-show-raw-digital-photo | 5 | ||||
-rw-r--r-- | contrib/show-raw-digital-photo.patch | 25 |
3 files changed, 33 insertions, 0 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'image' Revision History ----------------------------------- +2006-01-01 +- add contrib/show-raw-digital-photo.patch for anytopnm to show raw digital photo from many digital cameras. + 2005-12-28 - realised that least VDR 1.3.29 required, and update entrys at documentation diff --git a/contrib/README-show-raw-digital-photo b/contrib/README-show-raw-digital-photo new file mode 100644 index 0000000..08a8da7 --- /dev/null +++ b/contrib/README-show-raw-digital-photo @@ -0,0 +1,5 @@ +This patch is use to show raw digital photo from many digital cameras. + +You will need build dcraw, from http://www.cybercom.net/~dcoffin/dcraw/ +and patch for anytopnm with show-raw-digital-photo.patch + diff --git a/contrib/show-raw-digital-photo.patch b/contrib/show-raw-digital-photo.patch new file mode 100644 index 0000000..14e468f --- /dev/null +++ b/contrib/show-raw-digital-photo.patch @@ -0,0 +1,25 @@ +--- anytopnm.org 2005-12-31 07:57:24.000000000 +0100 ++++ anytopnm 2006-01-01 12:09:15.000000000 +0100 +@@ -99,9 +99,9 @@ + giftopnm "$file" + ;; + +- *TIFF* ) +- tifftopnm "$file" +- ;; ++# *TIFF* ) ++# tifftopnm "$file" ++# ;; + + *IFF*ILBM* ) + ilbmtoppm "$file" +@@ -241,6 +241,9 @@ + *.mda | *.mdp ) + mdatopbm -d -- "$file" + ;; ++ *.nef | *.crw | *.cr2 | *.NEF | *.CRW | *.CR2 ) ++ dcraw -2 -c -w "$file" ++ ;; + * ) + echo "$0: unknown file type: $filetype" 1>&2 + exit 1 |