transform.h 1.9 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 image transform methods.
  13. */
  14. #ifndef MAGICKCORE_TRANSFORM_H
  15. #define MAGICKCORE_TRANSFORM_H
  16. #if defined(__cplusplus) || defined(c_plusplus)
  17. extern "C" {
  18. #endif
  19. extern MagickExport Image
  20. *AutoOrientImage(const Image *,const OrientationType,ExceptionInfo *),
  21. *ChopImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  22. *ConsolidateCMYKImages(const Image *,ExceptionInfo *),
  23. *CropImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  24. *CropImageToTiles(const Image *,const char *, ExceptionInfo *),
  25. *ExcerptImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  26. *ExtentImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  27. *FlipImage(const Image *,ExceptionInfo *),
  28. *FlopImage(const Image *,ExceptionInfo *),
  29. *RollImage(const Image *,const ssize_t,const ssize_t,ExceptionInfo *),
  30. *ShaveImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  31. *SpliceImage(const Image *,const RectangleInfo *,ExceptionInfo *),
  32. *TransposeImage(const Image *,ExceptionInfo *),
  33. *TransverseImage(const Image *,ExceptionInfo *),
  34. *TrimImage(const Image *,ExceptionInfo *);
  35. extern MagickExport MagickBooleanType
  36. TransformImage(Image **,const char *,const char *),
  37. TransformImages(Image **,const char *,const char *);
  38. #if defined(__cplusplus) || defined(c_plusplus)
  39. }
  40. #endif
  41. #endif