constitute.inc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 image constitute methods.
  13. }
  14. type
  15. StorageType = (
  16. UndefinedPixel,
  17. CharPixel,
  18. DoublePixel,
  19. FloatPixel,
  20. IntegerPixel,
  21. LongPixel,
  22. QuantumPixel,
  23. ShortPixel
  24. );
  25. {extern MagickExport Image
  26. *ConstituteImage(const unsigned long,const unsigned long,const char *,
  27. const StorageType,const void *,ExceptionInfo *),
  28. *PingImage(const ImageInfo *,ExceptionInfo *),
  29. *ReadImage(const ImageInfo *,ExceptionInfo *),
  30. *ReadInlineImage(const ImageInfo *,const char *,ExceptionInfo *);
  31. extern MagickExport MagickBooleanType
  32. WriteImage(const ImageInfo *,Image *),
  33. WriteImages(const ImageInfo *,Image *,const char *,ExceptionInfo *);
  34. extern MagickExport void
  35. DestroyConstitute(void);}