KDcraw

rawfiles.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2005-2015 Gilles Caulier <caulier dot gilles at gmail dot com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#ifndef RAW_FILES_H
8#define RAW_FILES_H
9
10/**
11 * @file
12 * @brief list of RAW file extensions supported by libraw
13 */
14
15// NOTE: extension list Version 1 and 2 are taken from http://www.cybercom.net/~dcoffin/dcraw/rawphoto.c
16// NOTE: extension list Version 5 is taken from https://github.com/MrKepzie/Natron/issues/408#issuecomment-84959815
17
18// Ext Descriptions From
19// www.file-extensions.org
20// en.wikipedia.org/wiki/RAW_file_format
21// filext.com
22
23static const char raw_file_extentions[] =
24
25// NOTE: VERSION 1
26 "*.bay " // Casio Digital Camera Raw File Format.
27 "*.bmq " // NuCore Raw Image File.
28 "*.cr2 " // Canon Digital Camera RAW Image Format version 2.0. These images are based on the TIFF image standard.
29 "*.crw " // Canon Digital Camera RAW Image Format version 1.0.
30 "*.cs1 " // Capture Shop Raw Image File.
31 "*.dc2 " // Kodak DC25 Digital Camera File.
32 "*.dcr " // Kodak Digital Camera Raw Image Format for these models: Kodak DSC Pro SLR/c, Kodak DSC Pro SLR/n, Kodak DSC Pro 14N, Kodak DSC PRO 14nx.
33 "*.dng " // Adobe Digital Negative: DNG is publicly available archival format for the raw files generated by digital cameras. By addressing the lack of an open standard for the raw files created by individual camera models, DNG helps ensure that photographers will be able to access their files in the future.
34 "*.erf " // Epson Digital Camera Raw Image Format.
35 "*.fff " // Imacon Digital Camera Raw Image Format.
36 "*.hdr " // Leaf Raw Image File.
37 "*.k25 " // Kodak DC25 Digital Camera Raw Image Format.
38 "*.kdc " // Kodak Digital Camera Raw Image Format.
39 "*.mdc " // Minolta RD175 Digital Camera Raw Image Format.
40 "*.mos " // Mamiya Digital Camera Raw Image Format.
41 "*.mrw " // Minolta Dimage Digital Camera Raw Image Format.
42 "*.nef " // Nikon Digital Camera Raw Image Format.
43 "*.orf " // Olympus Digital Camera Raw Image Format.
44 "*.pef " // Pentax Digital Camera Raw Image Format.
45 "*.pxn " // Logitech Digital Camera Raw Image Format.
46 "*.raf " // Fuji Digital Camera Raw Image Format.
47 "*.raw " // Panasonic Digital Camera Image Format.
48 "*.rdc " // Digital Foto Maker Raw Image File.
49 "*.sr2 " // Sony Digital Camera Raw Image Format.
50 "*.srf " // Sony Digital Camera Raw Image Format for DSC-F828 8 megapixel digital camera or Sony DSC-R1
51 "*.x3f " // Sigma Digital Camera Raw Image Format for devices based on Foveon X3 direct image sensor.
52 "*.arw " // Sony Digital Camera Raw Image Format for Alpha devices.
53
54// NOTE: VERSION 2
55
56 "*.3fr " // Hasselblad Digital Camera Raw Image Format.
57 "*.cine " // Phantom Software Raw Image File.
58 "*.ia " // Sinar Raw Image File.
59 "*.kc2 " // Kodak DCS200 Digital Camera Raw Image Format.
60 "*.mef " // Mamiya Digital Camera Raw Image Format.
61 "*.nrw " // Nikon Digital Camera Raw Image Format.
62 "*.qtk " // Apple Quicktake 100/150 Digital Camera Raw Image Format.
63 "*.rw2 " // Panasonic LX3 Digital Camera Raw Image Format.
64 "*.sti " // Sinar Capture Shop Raw Image File.
65
66// NOTE: VERSION 3
67
68 "*.rwl " // Leica Digital Camera Raw Image Format.
69
70// NOTE: VERSION 4
71
72 "*.srw " // Samsung Raw Image Format.
73
74// NOTE: VERSION 5
75 "*.drf " // Kodak Digital Camera Raw Image Format.
76 "*.dsc " // Kodak Digital Camera Raw Image Format.
77 "*.ptx " // Pentax Digital Camera Raw Image Format.
78 "*.cap " // Phase One Digital Camera Raw Image Format.
79 "*.iiq " // Phase One Digital Camera Raw Image Format.
80 "*.rwz "; // Rawzor Digital Camera Raw Image Format.
81
82// increment this number whenever you change the above string
83static const int raw_file_extensions_version = 5;
84
85#endif // RAW_FILES_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 10 2024 11:49:37 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.