imagemagick.pas 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. Copyright 1999-2005 ImageMagick Studio LLC, a non-profit organization
  3. dedicated to making software imaging solutions freely available.
  4. You may not use this file except in compliance with the License.
  5. obtain a copy of the License at
  6. http://www.imagemagick.org/script/license.php
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. ImageMagick Application Programming Interface declarations.
  13. Converted from c by: Felipe Monteiro de Carvalho Dez/2005
  14. Bug-fixed by Ángel Eduardo García Hernández
  15. Thanks to Marc Geldon and RuBBeR
  16. }
  17. {Version 0.4}
  18. unit ImageMagick;
  19. {$ifdef FPC}
  20. {$mode objfpc}
  21. {$PACKRECORDS C}
  22. {$endif}
  23. interface
  24. uses SysUtils;
  25. {$MINENUMSIZE 1}
  26. const
  27. {$ifdef Win32}
  28. WandExport = 'CORE_RL_wand_.dll';
  29. {$else}
  30. WandExport = 'libWand';
  31. {$endif}
  32. {# include "magick/methods.h"
  33. #endif}
  34. {$include magick_type.inc}
  35. {$include type.inc}
  36. {#$include animate.inc}
  37. {#$include annotate.inc}
  38. {#$include attribute.inc}
  39. {#$include blob.inc}
  40. {#$include cache.inc}
  41. {$include cache_view.inc}
  42. {#include "magick/coder.h"
  43. #include "magick/client.h"
  44. #include "magick/color.h"
  45. #include "magick/colorspace.h"}
  46. {$include compare.inc}
  47. {#include "magick/composite.h"
  48. #include "magick/compress.h"
  49. #include "magick/configure.h"
  50. #include "magick/conjure.h"}
  51. {$include constitute.inc}
  52. {#include "magick/convert.h"
  53. #include "magick/decorate.h"
  54. #include "magick/delegate.h"
  55. #include "magick/deprecate.h"
  56. #include "magick/display.h"}
  57. {$include draw.inc}
  58. {$include effect.inc}
  59. {#include "magick/enhance.h"
  60. #include "magick/exception.h"}
  61. {$include fx.inc}
  62. {#include "magick/gem.h"
  63. #include "magick/geometry.h"
  64. #include "magick/hashmap.h"
  65. #include "magick/identify.h"
  66. #include "magick/image.h"
  67. #include "magick/import.h"
  68. #include "magick/list.h"
  69. #include "magick/locale_.h"
  70. #include "magick/log.h"
  71. #include "magick/magic.h"
  72. #include "magick/magick.h"
  73. #include "magick/memory_.h"
  74. #include "magick/module.h"
  75. #include "magick/mogrify.h"
  76. #include "magick/monitor.h"
  77. #include "magick/montage.h"
  78. #include "magick/option.h"
  79. #include "magick/paint.h"}
  80. {$include pixel.inc}
  81. {#include "magick/prepress.h"
  82. #include "magick/profile.h"}
  83. {$include quantize.inc}
  84. {#include "magick/quantum.h"
  85. #include "magick/registry.h"
  86. #include "magick/random_.h"
  87. #include "magick/resize.h"
  88. #include "magick/resource_.h"
  89. #include "magick/segment.h"
  90. #include "magick/shear.h"
  91. #include "magick/signature.h"
  92. #include "magick/splay-tree.h"
  93. #include "magick/stream.h"}
  94. {$include statistic.inc}
  95. {#include "magick/string_.h"
  96. #include "magick/timer.h"
  97. #include "magick/token.h"
  98. #include "magick/transform.h"
  99. #include "magick/utility.h"
  100. #include "magick/version.h"
  101. #include "magick/xwindow.h"}
  102. implementation
  103. end.