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

« back to all changes in this revision

Viewing changes to magick/decorate.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 Decorate Methods.
 
10
*/
 
11
#ifndef _MAGICK_DECORATE_H
 
12
#define _MAGICK_DECORATE_H
 
13
 
 
14
#if defined(__cplusplus) || defined(c_plusplus)
 
15
extern "C" {
 
16
#endif /* defined(__cplusplus) || defined(c_plusplus) */
 
17
 
 
18
extern MagickExport Image
 
19
  *BorderImage(const Image *,const RectangleInfo *,ExceptionInfo *),
 
20
  *FrameImage(const Image *,const FrameInfo *,ExceptionInfo *);
 
21
 
 
22
MagickExport unsigned int
 
23
  RaiseImage(Image *,const RectangleInfo *,const int);
 
24
 
 
25
#if defined(__cplusplus) || defined(c_plusplus)
 
26
}
 
27
#endif /* defined(__cplusplus) || defined(c_plusplus) */
 
28
 
 
29
#endif /* _MAGICK_DECORATE_H */