~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to packages/base/imagemagick/wand/magick_attribute.inc

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  Copyright 1999-2005 ImageMagick Studio LLC, a non-profit organization
 
3
  dedicated to making software imaging solutions freely available.
 
4
  
 
5
  You may not use this file except in compliance with the License.
 
6
  obtain a copy of the License at
 
7
  
 
8
    http://www.imagemagick.org/script/license.php
 
9
  
 
10
  Unless required by applicable law or agreed to in writing, software
 
11
  distributed under the License is distributed on an "AS IS" BASIS,
 
12
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
  See the License for the specific language governing permissions and
 
14
  limitations under the License.
 
15
 
 
16
  Set or Get Magick Wand Attributes.
 
17
}
 
18
 
 
19
function MagickGetException(wand: PMagickWand;
 
20
 severity: PExceptionType): PChar; cdecl; external WandExport;
 
21
function MagickGetFilename(const wand: PMagickWand): PChar; cdecl; external WandExport;
 
22
function MagickGetFormat(wand: PMagickWand): PChar; cdecl; external WandExport;
 
23
function MagickGetHomeURL: PChar; cdecl; external WandExport;
 
24
function MagickGetOption(wand: PMagickWand;
 
25
 const key: PChar): PChar; cdecl; external WandExport;
 
26
{sem documenta��o
 
27
extern WandExport char
 
28
  *MagickQueryConfigureOption(const char *),
 
29
  **MagickQueryConfigureOptions(const char *,unsigned long *),
 
30
  **MagickQueryFonts(const char *,unsigned long *),
 
31
  **MagickQueryFormats(const char *,unsigned long *);}
 
32
 
 
33
function MagickGetCompression(wand: PMagickWand): CompressionType; cdecl; external WandExport;
 
34
 
 
35
function MagickGetCopyright: PChar; cdecl; external WandExport;
 
36
function MagickGetPackageName: PChar; cdecl; external WandExport;
 
37
function MagickGetQuantumDepth(depth: PCardinal): PChar; cdecl; external WandExport;
 
38
function MagickGetQuantumRange(range: PCardinal): PChar; cdecl; external WandExport;
 
39
function MagickGetReleaseDate: PChar; cdecl; external WandExport;
 
40
function MagickGetVersion(version: PCardinal): PChar; cdecl; external WandExport;
 
41
 
 
42
function MagickGetSamplingFactors(wand: PMagickWand;
 
43
 number_factors: PCardinal): Pdouble; cdecl; external WandExport;
 
44
{function (wand: PMagickWand): Pdouble; cdecl; external WandExport;
 
45
  *MagickQueryFontMetrics(MagickWand *,const DrawingWand *,const char *),
 
46
  *MagickQueryMultilineFontMetrics(MagickWand *,const DrawingWand *,
 
47
    const char *);}
 
48
 
 
49
function MagickGetInterlaceScheme(wand: PMagickWand): InterlaceType; cdecl; external WandExport;
 
50
 
 
51
{function (const wand: PMagickWand): ; cdecl; external WandExport;
 
52
extern WandExport MagickBooleanType
 
53
  MagickGetPage(MagickWand *,unsigned long *,unsigned long *,long *,long *),
 
54
  MagickGetSize(const MagickWand *,unsigned long *,unsigned long *),
 
55
  MagickSetBackgroundColor(MagickWand *,const PixelWand *),
 
56
  MagickSetCompression(MagickWand *,const CompressionType),
 
57
  MagickSetCompressionQuality(MagickWand *,const unsigned long),
 
58
  MagickSetFilename(MagickWand *,const char *),
 
59
  MagickSetFormat(MagickWand *,const char *),
 
60
  MagickSetInterlaceScheme(MagickWand *,const InterlaceType),
 
61
  MagickSetOption(MagickWand *,const char *,const char *),
 
62
  MagickSetPage(MagickWand *,const unsigned long,const unsigned long,
 
63
    const long,const long),
 
64
  MagickSetPassphrase(MagickWand *,const char *),
 
65
  MagickSetResolution(MagickWand *,const double,const double),
 
66
  MagickSetResourceLimit(const ResourceType type,const unsigned long limit),
 
67
  MagickSetSamplingFactors(MagickWand *,const unsigned long,const double *),
 
68
  MagickSetSize(MagickWand *,const unsigned long,const unsigned long),
 
69
  MagickSetType(MagickWand *,const ImageType);
 
70
 
 
71
function (const wand: PMagickWand): ; cdecl; external WandExport;
 
72
extern WandExport MagickProgressMonitor
 
73
  MagickSetProgressMonitor(MagickWand *,const MagickProgressMonitor,void *);
 
74
 
 
75
function (const wand: PMagickWand): ; cdecl; external WandExport;
 
76
extern WandExport unsigned long
 
77
  MagickGetCompressionQuality(MagickWand *),
 
78
  MagickGetResource(const ResourceType),
 
79
  MagickGetResourceLimit(const ResourceType);}
 
80