annotate.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. Copyright 1999 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. You may
  5. obtain a copy of the License at
  6. https://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. MagickCore image annotation methods.
  13. */
  14. #ifndef MAGICKCORE_ANNOTATE_H
  15. #define MAGICKCORE_ANNOTATE_H
  16. #include "magick/draw.h"
  17. #if defined(__cplusplus) || defined(c_plusplus)
  18. extern "C" {
  19. #endif
  20. extern MagickExport MagickBooleanType
  21. AnnotateComponentGenesis(void),
  22. AnnotateImage(Image *,const DrawInfo *),
  23. GetMultilineTypeMetrics(Image *,const DrawInfo *,TypeMetric *),
  24. GetTypeMetrics(Image *,const DrawInfo *,TypeMetric *);
  25. extern MagickExport ssize_t
  26. FormatMagickCaption(Image *,DrawInfo *,const MagickBooleanType,TypeMetric *,
  27. char **);
  28. extern MagickExport void
  29. AnnotateComponentTerminus(void);
  30. #if defined(__cplusplus) || defined(c_plusplus)
  31. }
  32. #endif
  33. #endif