summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2006-01-01 11:22:23 +0000
committerAndreas Brachold <vdr07@deltab.de>2006-01-01 11:22:23 +0000
commit02f7ef06dbd8a6335f6da13cba8a390d356b7dca (patch)
treef86f6663b8cba6f6170939b4892a74f2280ba00d
parentd69c2f9ea1af43e4edb31c47a410d5bc131735f8 (diff)
downloadvdr-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--HISTORY3
-rw-r--r--contrib/README-show-raw-digital-photo5
-rw-r--r--contrib/show-raw-digital-photo.patch25
3 files changed, 33 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index 1135b77..91d75b7 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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