Martijn Braam vor 1 Jahr
Ursprung
Commit
1c89f25e3b
1 geänderte Dateien mit 15 neuen und 13 gelöschten Zeilen
  1. 15 13
      README.md

+ 15 - 13
README.md

@@ -1,17 +1,19 @@
-## Inside a DNG file
+## libdng
 
-* SubIFDType 0 is the original raw data
-* SubIFDType 1 is the thumbnail data
-* The recommendation is to store the thumbnail as the first IFD
-* TIFF metdata goes in the first IFD
-* EXIF tags are preferred
-* Camera profiles are stored in the first IFD
+This is a library for making it easier to generate valid DNG files following
+the Adobe Digital Negative specification. This library is written for writing
+pictures created with [Megapixels](https://gitlab.com/megapixels-org/Megapixels)
+but should be useful for any photography applications.
 
-## Required tags
+The documentation can be found on [https://libdng.me.gapixels.me/](https://libdng.me.gapixels.me/)
 
-* DNGVersion
-* UniqueCameraModel
+Main features are:
+* Writing DNG 1.4.0 compliant TIFF files
+* Parsing DCP files for extra color processing metadata
+* Some DNG reading support for the `dngmerge` utility
+* Isolating applications from the changing libtiff APIs
 
-## Neat tags
-
-* AnalogBalance stores the gains applied to the RGB channels by the sensor
+This library also builds the `makedng` utility which allows generating a .dng
+file by hand from a raw sensor dump so it can be loaded in regular image
+processing software and a `dngmerge` utlity for combinding an existing DNG file
+with new color calibration tags from a DCP file.