]> granicus.if.org Git - imagemagick/blob - MagickCore/cache.h
(no commit message)
[imagemagick] / MagickCore / cache.h
1 /*
2   Copyright 1999-2011 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 cache methods.
17 */
18 #ifndef _MAGICKCORE_CACHE_H
19 #define _MAGICKCORE_CACHE_H
20
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24
25 #include "MagickCore/blob.h"
26
27 extern MagickExport const Quantum
28   *GetVirtualPixels(const Image *,const ssize_t,const ssize_t,const size_t,
29     const size_t,ExceptionInfo *),
30   *GetVirtualPixelQueue(const Image *);
31
32 extern MagickExport const void
33   *GetVirtualMetacontent(const Image *);
34
35 extern MagickExport MagickBooleanType
36   GetOneVirtualMagickPixel(const Image *,const ssize_t,const ssize_t,
37     PixelInfo *,ExceptionInfo *),
38   GetOneVirtualPixel(const Image *,const ssize_t,const ssize_t,PixelPacket *,
39     ExceptionInfo *),
40   GetOneVirtualMethodPixel(const Image *,const VirtualPixelMethod,const ssize_t,
41     const ssize_t,PixelPacket *,ExceptionInfo *),
42   GetOneAuthenticPixel(Image *,const ssize_t,const ssize_t,PixelPacket *,
43     ExceptionInfo *),
44   PersistPixelCache(Image *,const char *,const MagickBooleanType,
45     MagickOffsetType *,ExceptionInfo *),
46   SyncAuthenticPixels(Image *,ExceptionInfo *);
47
48 extern MagickExport MagickSizeType
49   GetImageExtent(const Image *);
50
51 extern MagickExport Quantum
52   *GetAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t,
53     const size_t,ExceptionInfo *),
54   *GetAuthenticPixelQueue(const Image *),
55   *QueueAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t,
56     const size_t,ExceptionInfo *);
57
58 extern MagickExport void
59   *GetAuthenticMetacontent(const Image *);
60
61 #if defined(__cplusplus) || defined(c_plusplus)
62 }
63 #endif
64
65 #endif