~ubuntu-branches/ubuntu/intrepid/graphicsmagick/intrepid

« back to all changes in this revision

Viewing changes to magick/resize.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2006-05-06 16:28:08 UTC
  • Revision ID: james.westby@ubuntu.com-20060506162808-vt2ni3r5nytcszms
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (C) 2003 GraphicsMagick Group
 
3
  Copyright (C) 2002 ImageMagick Studio
 
4
 
 
5
  This program is covered by multiple licenses, which are described in
 
6
  Copyright.txt. You should have received a copy of Copyright.txt with this
 
7
  package; otherwise see http://www.graphicsmagick.org/www/Copyright.html.
 
8
 
 
9
  ImageMagick Image Resize Methods.
 
10
*/
 
11
#ifndef _MAGICK_RESIZE_H
 
12
#define _MAGICK_RESIZE_H
 
13
 
 
14
#if defined(__cplusplus) || defined(c_plusplus)
 
15
extern "C" {
 
16
#endif /* defined(__cplusplus) || defined(c_plusplus) */
 
17
 
 
18
#define DefaultResizeFilter LanczosFilter
 
19
 
 
20
extern MagickExport Image
 
21
  *MagnifyImage(const Image *,ExceptionInfo *),
 
22
  *MinifyImage(const Image *,ExceptionInfo *),
 
23
  *ResizeImage(const Image *,const unsigned long,const unsigned long,
 
24
     const FilterTypes,const double,ExceptionInfo *),
 
25
  *SampleImage(const Image *,const unsigned long,const unsigned long,
 
26
   ExceptionInfo *),
 
27
  *ScaleImage(const Image *,const unsigned long,const unsigned long,
 
28
     ExceptionInfo *),
 
29
  *ThumbnailImage(const Image *,const unsigned long,const unsigned long,
 
30
   ExceptionInfo *),
 
31
  *ZoomImage(const Image *,const unsigned long,const unsigned long,
 
32
     ExceptionInfo *);
 
33
 
 
34
#if defined(__cplusplus) || defined(c_plusplus)
 
35
}
 
36
#endif /* defined(__cplusplus) || defined(c_plusplus) */
 
37
 
 
38
#endif /* _MAGICK_RESIZE_H */