~cosme/ubuntu/precise/freeimage/freeimage-3.15.1

« back to all changes in this revision

Viewing changes to Wrapper/FreeImage.NET/cs/Library/Enumerations/FREE_IMAGE_COLOR_CHANNEL.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.1 $
 
32
// $Date: 2007/11/28 15:33:40 $
 
33
// $Id: FREE_IMAGE_COLOR_CHANNEL.cs,v 1.1 2007/11/28 15:33:40 cklein05 Exp $
 
34
// ==========================================================
 
35
 
 
36
namespace FreeImageAPI
 
37
{
 
38
        /// <summary>
 
39
        /// Color channels. Constants used in color manipulation routines.
 
40
        /// </summary>
 
41
        public enum FREE_IMAGE_COLOR_CHANNEL
 
42
        {
 
43
                /// <summary>
 
44
                /// Use red, green and blue channels
 
45
                /// </summary>
 
46
                FICC_RGB = 0,
 
47
                /// <summary>
 
48
                /// Use red channel
 
49
                /// </summary>
 
50
                FICC_RED = 1,
 
51
                /// <summary>
 
52
                /// Use green channel
 
53
                /// </summary>
 
54
                FICC_GREEN = 2,
 
55
                /// <summary>
 
56
                /// Use blue channel
 
57
                /// </summary>
 
58
                FICC_BLUE = 3,
 
59
                /// <summary>
 
60
                /// Use alpha channel
 
61
                /// </summary>
 
62
                FICC_ALPHA = 4,
 
63
                /// <summary>
 
64
                /// Use black channel
 
65
                /// </summary>
 
66
                FICC_BLACK = 5,
 
67
                /// <summary>
 
68
                /// Complex images: use real part
 
69
                /// </summary>
 
70
                FICC_REAL = 6,
 
71
                /// <summary>
 
72
                /// Complex images: use imaginary part
 
73
                /// </summary>
 
74
                FICC_IMAG = 7,
 
75
                /// <summary>
 
76
                /// Complex images: use magnitude
 
77
                /// </summary>
 
78
                FICC_MAG = 8,
 
79
                /// <summary>
 
80
                /// Complex images: use phase
 
81
                /// </summary>
 
82
                FICC_PHASE = 9
 
83
        }
 
84
}
 
 
b'\\ No newline at end of file'