]> granicus.if.org Git - imagemagick/blob - magick/list.h
(no commit message)
[imagemagick] / magick / list.h
1 /*
2   Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization
3   dedicated to making software imaging solutions freely available.
4   
5   You may not use this file except in compliance with the License.
6   obtain a copy of the License at
7   
8     http://www.imagemagick.org/script/license.php
9   
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15
16   MagickCore image list methods.
17 */
18 #ifndef _MAGICKCORE_LIST_H
19 #define _MAGICKCORE_LIST_H
20
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24
25 extern MagickExport Image
26   *CloneImageList(const Image *,ExceptionInfo *),
27   *CloneImages(const Image *,const char *,ExceptionInfo *),
28   *DestroyImageList(Image *),
29   *GetFirstImageInList(const Image *),
30   *GetImageFromList(const Image *,const long),
31   *GetLastImageInList(const Image *),
32   *GetNextImageInList(const Image *),
33   *GetPreviousImageInList(const Image *),
34   **ImageListToArray(const Image *,ExceptionInfo *),
35   *NewImageList(void),
36   *RemoveImageFromList(Image **),
37   *RemoveLastImageFromList(Image **),
38   *RemoveFirstImageFromList(Image **),
39   *SpliceImageIntoList(Image **,const unsigned long,const Image *),
40   *SplitImageList(Image *),
41   *SyncNextImageInList(const Image *);
42
43 extern MagickExport long
44   GetImageIndexInList(const Image *);
45
46 extern MagickExport unsigned long
47   GetImageListLength(const Image *);
48
49 extern MagickExport void
50   AppendImageToList(Image **,const Image *),
51   DeleteImageFromList(Image **),
52   DeleteImages(Image **,const char *,ExceptionInfo *),
53   InsertImageInList(Image **,Image *),
54   PrependImageToList(Image **,Image *),
55   ReplaceImageInList(Image **,Image *),
56   ReverseImageList(Image **),
57   SyncImageList(Image *);
58
59 #if defined(__cplusplus) || defined(c_plusplus)
60 }
61 #endif
62
63 #endif