cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 2 | Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 25 | #include "MagickCore/blob.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 26 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 27 | extern MagickExport const Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 28 | *GetVirtualPixels(const Image *,const ssize_t,const ssize_t,const size_t, |
| 29 | const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 30 | *GetVirtualPixelQueue(const Image *); |
| 31 | |
cristy | d43a46b | 2010-01-21 02:13:41 +0000 | [diff] [blame] | 32 | extern MagickExport const void |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 33 | *GetVirtualMetacontent(const Image *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 34 | |
| 35 | extern MagickExport MagickBooleanType |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 36 | GetOneVirtualMagickPixel(const Image *,const ssize_t,const ssize_t, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 37 | PixelInfo *,ExceptionInfo *), |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame] | 38 | GetOneVirtualPixel(const Image *,const ssize_t,const ssize_t,Quantum *, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 39 | ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 40 | GetOneVirtualMethodPixel(const Image *,const VirtualPixelMethod,const ssize_t, |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame] | 41 | const ssize_t,Quantum *,ExceptionInfo *), |
| 42 | GetOneAuthenticPixel(Image *,const ssize_t,const ssize_t,Quantum *, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 43 | ExceptionInfo *), |
| 44 | PersistPixelCache(Image *,const char *,const MagickBooleanType, |
| 45 | MagickOffsetType *,ExceptionInfo *), |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 46 | SyncAuthenticPixels(Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 47 | |
| 48 | extern MagickExport MagickSizeType |
| 49 | GetImageExtent(const Image *); |
| 50 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 51 | extern MagickExport Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 52 | *GetAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t, |
| 53 | const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 54 | *GetAuthenticPixelQueue(const Image *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 55 | *QueueAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t, |
| 56 | const size_t,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 57 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 58 | extern MagickExport void |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 59 | *GetAuthenticMetacontent(const Image *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 60 | |
| 61 | #if defined(__cplusplus) || defined(c_plusplus) |
| 62 | } |
| 63 | #endif |
| 64 | |
| 65 | #endif |