property.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 property methods.
  13. */
  14. #ifndef MAGICKCORE_PROPERTY_H
  15. #define MAGICKCORE_PROPERTY_H
  16. #if defined(__cplusplus) || defined(c_plusplus)
  17. extern "C" {
  18. #endif
  19. extern MagickExport char
  20. *GetNextImageProperty(const Image *),
  21. *InterpretImageProperties(const ImageInfo *,Image *,const char *),
  22. *RemoveImageProperty(Image *,const char *);
  23. extern MagickExport const char
  24. *GetImageProperty(const Image *,const char *),
  25. *GetMagickProperty(const ImageInfo *,Image *,const char *);
  26. extern MagickExport MagickBooleanType
  27. CloneImageProperties(Image *,const Image *),
  28. DefineImageProperty(Image *,const char *),
  29. DeleteImageProperty(Image *,const char *),
  30. FormatImageProperty(Image *,const char *,const char *,...)
  31. magick_attribute((__format__ (__printf__,3,4))),
  32. SetImageProperty(Image *,const char *,const char *);
  33. extern MagickExport void
  34. DestroyImageProperties(Image *),
  35. ResetImagePropertyIterator(const Image *);
  36. #if defined(__cplusplus) || defined(c_plusplus)
  37. }
  38. #endif
  39. #endif