~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_FILTER.cs

  • Committer: Stefano Rivera
  • Date: 2010-07-24 15:35:51 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: stefanor@ubuntu.com-20100724153551-6s3fth1653huk31a
Tags: upstream-3.13.1
ImportĀ upstreamĀ versionĀ 3.31.1

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:39 $
 
33
// $Id: FREE_IMAGE_FILTER.cs,v 1.1 2007/11/28 15:33:39 cklein05 Exp $
 
34
// ==========================================================
 
35
 
 
36
namespace FreeImageAPI
 
37
{
 
38
        /// <summary>
 
39
        /// Upsampling / downsampling filters. Constants used in FreeImage_Rescale.
 
40
        /// </summary>
 
41
        public enum FREE_IMAGE_FILTER
 
42
        {
 
43
                /// <summary>
 
44
                /// Box, pulse, Fourier window, 1st order (constant) b-spline
 
45
                /// </summary>
 
46
                FILTER_BOX = 0,
 
47
                /// <summary>
 
48
                /// Mitchell and Netravali's two-param cubic filter
 
49
                /// </summary>
 
50
                FILTER_BICUBIC = 1,
 
51
                /// <summary>
 
52
                /// Bilinear filter
 
53
                /// </summary>
 
54
                FILTER_BILINEAR = 2,
 
55
                /// <summary>
 
56
                /// 4th order (cubic) b-spline
 
57
                /// </summary>
 
58
                FILTER_BSPLINE = 3,
 
59
                /// <summary>
 
60
                /// Catmull-Rom spline, Overhauser spline
 
61
                /// </summary>
 
62
                FILTER_CATMULLROM = 4,
 
63
                /// <summary>
 
64
                /// Lanczos3 filter
 
65
                /// </summary>
 
66
                FILTER_LANCZOS3 = 5
 
67
        }
 
68
}
 
 
b'\\ No newline at end of file'