summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@freedesktop.org>2013-05-13 17:52:22 -0700
committerJoe Rayhawk <jrayhawk@freedesktop.org>2013-05-13 17:52:22 -0700
commit8d023546af8f0b64974a919ee2340ea9b63fefbb (patch)
tree8f9ab8791f0b2ee3bff6a597b5cb611bbdc8efdf
parentdbaec448446000bcca60924a7ba8479b52d09828 (diff)
moin2mdwn: convert page Nikon_NEF
-rw-r--r--Nikon_NEF.mdwn (renamed from Nikon_NEF.moin)67
1 files changed, 36 insertions, 31 deletions
diff --git a/Nikon_NEF.moin b/Nikon_NEF.mdwn
index c42d812..6890ad8 100644
--- a/Nikon_NEF.moin
+++ b/Nikon_NEF.mdwn
@@ -1,31 +1,36 @@
-NEF files are generated by Nikon cameras.
-
-NRW is a variant, generated by some Coolpix like the P6000 and P7000. Some differences notable in the RAW data storage that is not "standard". The use of .nrw extension is probably to differentiate them since Nikon committed "support" in Windows (like a marketing gimmick).
-
-= MIME type =
-
-image/x-nikon-nef
-
-= Organisation =
-
-It is a TIFF file. close to TIFF/EP or DNG.
-
-= Thumbnails =
-
-NEF files have a large JPEG preview. It is either in a subIF of the main IFD (type == thumbail) or for the older, in the MakerNote IFD.
-
-= Compression =
-
-D1 files are not compressed.
-
-D1x files are not compressed but have a weird shape: they have a pixel ratio of 0.5, ie 2 row for one.
-
-Some files are packed (Compression = 32769). It is a standard packing with some padding: if col % 10 == 9, then an extra 8 bits must be skipped.
-
-Compression (Compression = 34713) is a Huffman tree and a quantization table. The quantization tables are at 0x8c and 0x96 tag from the MakerNote. Strangely dcraw seems to only use the later as it override the value reading the tags in sequence. See nikon_compressed_load_raw().
-
-[[http://www.majid.info/mylos/weblog/2004/05/02-1.html]] has a very insightful article about NEF decoding.
-
-The D100 has a bug that tag uncompressed image as compressed, but not always. See nikon_is_compressed() in dcraw.c. It appear that most D100 will just use uncompressed (packed) as the compression ''froze the camera for 20s''
-
-NRW are not compressed, but the RAW data organisation is not standard. (TBD)
+
+NEF files are generated by Nikon cameras.
+
+NRW is a variant, generated by some Coolpix like the P6000 and P7000. Some differences notable in the RAW data storage that is not "standard". The use of .nrw extension is probably to differentiate them since Nikon committed "support" in Windows (like a marketing gimmick).
+
+
+# MIME type
+
+image/x-nikon-nef
+
+
+# Organisation
+
+It is a TIFF file. close to TIFF/EP or DNG.
+
+
+# Thumbnails
+
+NEF files have a large JPEG preview. It is either in a subIF of the main IFD (type == thumbail) or for the older, in the [[MakerNote|MakerNote]] IFD.
+
+
+# Compression
+
+D1 files are not compressed.
+
+D1x files are not compressed but have a weird shape: they have a pixel ratio of 0.5, ie 2 row for one.
+
+Some files are packed (Compression = 32769). It is a standard packing with some padding: if col % 10 == 9, then an extra 8 bits must be skipped.
+
+Compression (Compression = 34713) is a Huffman tree and a quantization table. The quantization tables are at 0x8c and 0x96 tag from the [[MakerNote|MakerNote]]. Strangely dcraw seems to only use the later as it override the value reading the tags in sequence. See nikon_compressed_load_raw().
+
+[[http://www.majid.info/mylos/weblog/2004/05/02-1.html|http://www.majid.info/mylos/weblog/2004/05/02-1.html]] has a very insightful article about NEF decoding.
+
+The D100 has a bug that tag uncompressed image as compressed, but not always. See nikon_is_compressed() in dcraw.c. It appear that most D100 will just use uncompressed (packed) as the compression _froze the camera for 20s_
+
+NRW are not compressed, but the RAW data organisation is not standard. (TBD)