index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=windows-1252">
  5. <title>LibRaw: better dcraw (library)</title>
  6. </head>
  7. <body>
  8. <h1>LibRaw: RAW image decoding/processing library</h1>
  9. <p>LibRaw is a library for reading RAW files from digital photo cameras (CRW/CR2, NEF, RAF, DNG, MOS, KDC, DCR, etc.; virtually all RAW formats are supported). It pays special attention to correct retrieval of data required for subsequent RAW conversion.</p>
  10. <p>The library is intended for embedding in RAW converters, data analyzers, and other programs using RAW files as the initial data.</p>
  11. <p> Contents </p>
  12. <ol>
  13. <li><a href="#copyright">Copyright</a></li>
  14. <li><a href="Why-LibRaw.html">Purpose and Objectives</a></li>
  15. <li><a href="API-overview.html">Overview of LibRaw API (C++)</a></li>
  16. <li><a href="Install-LibRaw.html">Compilation and Installation</a></li>
  17. <li><a href="API-datastruct.html">Data Structures, Error Codes, and Constants</a> </li>
  18. <li><a href="API-CXX.html">C++ API</a> </li>
  19. <li><a href="API-C.html">C API</a></li>
  20. <li><a href="API-notes.html">Notes on API (error code conventions, memory usage)</a></li>
  21. <li><a href="Samples-LibRaw.html">Examples</a> </li>
  22. </ol>
  23. <a name="copyright"></a>
  24. <h2>Copyright</h2>
  25. <p> LibRaw library, Copyright (C) 2008-2021 LibRaw LLC ([email protected])<br>
  26. The library includes source code from<br>
  27. <i>dcraw.c, Dave Coffin's raw photo decoder<br>
  28. Copyright 1997-2016 by Dave Coffin, dcoffin a cybercom o net<br>
  29. </i> </p>
  30. <p> LibRaw is distributed for free under two different licenses: </p>
  31. <ul>
  32. <li><a href="http://www.gnu.org/licenses/lgpl-2.1.html">GNU Lesser General Public License, version 2.1</a></li>
  33. <li><a href="http://www.opensource.org/licenses/cddl1.txt">COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</a></li>
  34. </ul>
  35. You may use one of these licensing modes and switch between them.
  36. <p></p>
  37. </body>
  38. </html>