~ubuntu-branches/ubuntu/oneiric/freeimage/oneiric

« back to all changes in this revision

Viewing changes to Wrapper/FreeImage.NET/cs/Library/Enumerations/FREE_IMAGE_FORMAT.cs

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-07-20 13:42:15 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100720134215-xt1454zaedv3b604
Tags: 3.13.1-0ubuntu1
* New upstream release. Closes: (LP: #607800)
 - Updated debian/freeimage-get-orig-source script.
 - Removing no longer necessary debian/patches/* and
   the patch system in debian/rules.
 - Updated debian/rules to work with the new Makefiles.
 - Drop from -O3 to -O2 and use lzma compression saves
   ~10 MB of free space. 
* lintian stuff
 - fixed debhelper-but-no-misc-depends
 - fixed ldconfig-symlink-missing-for-shlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ==========================================================
 
2
// FreeImage 3 .NET wrapper
 
3
// Original FreeImage 3 functions and .NET compatible derived functions
 
4
//
 
5
// Design and implementation by
 
6
// - Jean-Philippe Goerke (jpgoerke@users.sourceforge.net)
 
7
// - Carsten Klein (cklein05@users.sourceforge.net)
 
8
//
 
9
// Contributors:
 
10
// - David Boland (davidboland@vodafone.ie)
 
11
//
 
12
// Main reference : MSDN Knowlede Base
 
13
//
 
14
// This file is part of FreeImage 3
 
15
//
 
16
// COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
 
17
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
 
18
// THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
 
19
// OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
 
20
// CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
 
21
// THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
 
22
// SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
 
23
// PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
 
24
// THIS DISCLAIMER.
 
25
//
 
26
// Use at your own risk!
 
27
// ==========================================================
 
28
 
 
29
// ==========================================================
 
30
// CVS
 
31
// $Revision: 1.2 $
 
32
// $Date: 2009/09/15 11:44:42 $
 
33
// $Id: FREE_IMAGE_FORMAT.cs,v 1.2 2009/09/15 11:44:42 cklein05 Exp $
 
34
// ==========================================================
 
35
 
 
36
namespace FreeImageAPI
 
37
{
 
38
        /// <summary>
 
39
        /// I/O image format identifiers.
 
40
        /// </summary>
 
41
        public enum FREE_IMAGE_FORMAT
 
42
        {
 
43
                /// <summary>
 
44
                /// Unknown format (returned value only, never use it as input value)
 
45
                /// </summary>
 
46
                FIF_UNKNOWN = -1,
 
47
                /// <summary>
 
48
                /// Windows or OS/2 Bitmap File (*.BMP)
 
49
                /// </summary>
 
50
                FIF_BMP = 0,
 
51
                /// <summary>
 
52
                /// Windows Icon (*.ICO)
 
53
                /// </summary>
 
54
                FIF_ICO = 1,
 
55
                /// <summary>
 
56
                /// Independent JPEG Group (*.JPG, *.JIF, *.JPEG, *.JPE)
 
57
                /// </summary>
 
58
                FIF_JPEG = 2,
 
59
                /// <summary>
 
60
                /// JPEG Network Graphics (*.JNG)
 
61
                /// </summary>
 
62
                FIF_JNG = 3,
 
63
                /// <summary>
 
64
                /// Commodore 64 Koala format (*.KOA)
 
65
                /// </summary>
 
66
                FIF_KOALA = 4,
 
67
                /// <summary>
 
68
                /// Amiga IFF (*.IFF, *.LBM)
 
69
                /// </summary>
 
70
                FIF_LBM = 5,
 
71
                /// <summary>
 
72
                /// Amiga IFF (*.IFF, *.LBM)
 
73
                /// </summary>
 
74
                FIF_IFF = 5,
 
75
                /// <summary>
 
76
                /// Multiple Network Graphics (*.MNG)
 
77
                /// </summary>
 
78
                FIF_MNG = 6,
 
79
                /// <summary>
 
80
                /// Portable Bitmap (ASCII) (*.PBM)
 
81
                /// </summary>
 
82
                FIF_PBM = 7,
 
83
                /// <summary>
 
84
                /// Portable Bitmap (BINARY) (*.PBM)
 
85
                /// </summary>
 
86
                FIF_PBMRAW = 8,
 
87
                /// <summary>
 
88
                /// Kodak PhotoCD (*.PCD)
 
89
                /// </summary>
 
90
                FIF_PCD = 9,
 
91
                /// <summary>
 
92
                /// Zsoft Paintbrush PCX bitmap format (*.PCX)
 
93
                /// </summary>
 
94
                FIF_PCX = 10,
 
95
                /// <summary>
 
96
                /// Portable Graymap (ASCII) (*.PGM)
 
97
                /// </summary>
 
98
                FIF_PGM = 11,
 
99
                /// <summary>
 
100
                /// Portable Graymap (BINARY) (*.PGM)
 
101
                /// </summary>
 
102
                FIF_PGMRAW = 12,
 
103
                /// <summary>
 
104
                /// Portable Network Graphics (*.PNG)
 
105
                /// </summary>
 
106
                FIF_PNG = 13,
 
107
                /// <summary>
 
108
                /// Portable Pixelmap (ASCII) (*.PPM)
 
109
                /// </summary>
 
110
                FIF_PPM = 14,
 
111
                /// <summary>
 
112
                /// Portable Pixelmap (BINARY) (*.PPM)
 
113
                /// </summary>
 
114
                FIF_PPMRAW = 15,
 
115
                /// <summary>
 
116
                /// Sun Rasterfile (*.RAS)
 
117
                /// </summary>
 
118
                FIF_RAS = 16,
 
119
                /// <summary>
 
120
                /// truevision Targa files (*.TGA, *.TARGA)
 
121
                /// </summary>
 
122
                FIF_TARGA = 17,
 
123
                /// <summary>
 
124
                /// Tagged Image File Format (*.TIF, *.TIFF)
 
125
                /// </summary>
 
126
                FIF_TIFF = 18,
 
127
                /// <summary>
 
128
                /// Wireless Bitmap (*.WBMP)
 
129
                /// </summary>
 
130
                FIF_WBMP = 19,
 
131
                /// <summary>
 
132
                /// Adobe Photoshop (*.PSD)
 
133
                /// </summary>
 
134
                FIF_PSD = 20,
 
135
                /// <summary>
 
136
                /// Dr. Halo (*.CUT)
 
137
                /// </summary>
 
138
                FIF_CUT = 21,
 
139
                /// <summary>
 
140
                /// X11 Bitmap Format (*.XBM)
 
141
                /// </summary>
 
142
                FIF_XBM = 22,
 
143
                /// <summary>
 
144
                /// X11 Pixmap Format (*.XPM)
 
145
                /// </summary>
 
146
                FIF_XPM = 23,
 
147
                /// <summary>
 
148
                /// DirectDraw Surface (*.DDS)
 
149
                /// </summary>
 
150
                FIF_DDS = 24,
 
151
                /// <summary>
 
152
                /// Graphics Interchange Format (*.GIF)
 
153
                /// </summary>
 
154
                FIF_GIF = 25,
 
155
                /// <summary>
 
156
                /// High Dynamic Range (*.HDR)
 
157
                /// </summary>
 
158
                FIF_HDR = 26,
 
159
                /// <summary>
 
160
                /// Raw Fax format CCITT G3 (*.G3)
 
161
                /// </summary>
 
162
                FIF_FAXG3 = 27,
 
163
                /// <summary>
 
164
                /// Silicon Graphics SGI image format (*.SGI)
 
165
                /// </summary>
 
166
                FIF_SGI = 28,
 
167
                /// <summary>
 
168
                /// OpenEXR format (*.EXR)
 
169
                /// </summary>
 
170
                FIF_EXR = 29,
 
171
                /// <summary>
 
172
                /// JPEG-2000 format (*.J2K, *.J2C)
 
173
                /// </summary>
 
174
                FIF_J2K = 30,
 
175
                /// <summary>
 
176
                /// JPEG-2000 format (*.JP2)
 
177
                /// </summary>
 
178
                FIF_JP2 = 31,
 
179
                /// <summary>
 
180
                /// Portable FloatMap (*.PFM)
 
181
                /// </summary>
 
182
                FIF_PFM = 32,
 
183
                /// <summary>
 
184
                /// Macintosh PICT (*.PICT)
 
185
                /// </summary>
 
186
                FIF_PICT = 33,
 
187
                /// <summary>
 
188
                /// RAW camera image (*.*)
 
189
                /// </summary>
 
190
                FIF_RAW = 34,
 
191
        }
 
192
}
 
 
b'\\ No newline at end of file'