AcquireAuthenticCacheView • AcquireVirtualCacheView • CloneCacheView • DestroyCacheView • GetCacheViewAuthenticPixels • GetCacheViewAuthenticMetacontent • GetCacheViewAuthenticPixelQueue • GetCacheViewColorspace • GetCacheViewImage • GetCacheViewStorageClass • GetCacheViewVirtualMetacontent • GetCacheViewVirtualPixelQueue • GetCacheViewVirtualPixels • GetOneCacheViewAuthenticPixel • GetOneCacheViewVirtualPixel • GetOneCacheViewVirtualPixelInfo • GetOneCacheViewVirtualMethodPixel • QueueCacheViewAuthenticPixels • SetCacheViewStorageClass • SetCacheViewVirtualPixelMethod • SyncCacheViewAuthenticPixels
AcquireAuthenticCacheView() acquires an authentic view into the pixel cache. It always succeeds but may return a warning or informational exception.
The format of the AcquireAuthenticCacheView method is:
CacheView *AcquireAuthenticCacheView(const Image *image, ExceptionInfo *exception)
A description of each parameter follows:
AcquireVirtualCacheView() acquires a virtual view into the pixel cache, using the VirtualPixelMethod that is defined within the given image itself. It always succeeds but may return a warning or informational exception.
The format of the AcquireVirtualCacheView method is:
CacheView *AcquireVirtualCacheView(const Image *image, ExceptionInfo *exception)
A description of each parameter follows:
CloneCacheView() makes an exact copy of the specified cache view.
The format of the CloneCacheView method is:
CacheView *CloneCacheView(const CacheView *cache_view)
A description of each parameter follows:
DestroyCacheView() destroys the specified view returned by a previous call to AcquireCacheView().
The format of the DestroyCacheView method is:
CacheView *DestroyCacheView(CacheView *cache_view)
A description of each parameter follows:
GetCacheViewAuthenticPixels() gets pixels from the in-memory or disk pixel cache as defined by the geometry parameters. A pointer to the pixels is returned if the pixels are transferred, otherwise a NULL is returned.
The format of the GetCacheViewAuthenticPixels method is:
Quantum *GetCacheViewAuthenticPixels(CacheView *cache_view, const ssize_t x,const ssize_t y,const size_t columns, const size_t rows,ExceptionInfo *exception)
A description of each parameter follows:
GetCacheViewAuthenticMetacontent() returns the meta-content corresponding with the last call to SetCacheViewIndexes() or GetCacheViewAuthenticMetacontent(). The meta-content are authentic and can be updated.
The format of the GetCacheViewAuthenticMetacontent() method is:
void *GetCacheViewAuthenticMetacontent(CacheView *cache_view)
A description of each parameter follows:
GetCacheViewAuthenticPixelQueue() returns the pixels associated with the last call to QueueCacheViewAuthenticPixels() or GetCacheViewAuthenticPixels(). The pixels are authentic and therefore can be updated.
The format of the GetCacheViewAuthenticPixelQueue() method is:
Quantum *GetCacheViewAuthenticPixelQueue(CacheView *cache_view)
A description of each parameter follows:
GetCacheViewColorspace() returns the image colorspace associated with the specified view.
The format of the GetCacheViewColorspace method is:
ColorspaceType GetCacheViewColorspace(const CacheView *cache_view)
A description of each parameter follows:
GetCacheViewImage() returns the image associated with the specified view.
The format of the GetCacheViewImage method is:
const Image *GetCacheViewImage(const CacheView *cache_view)
A description of each parameter follows:
GetCacheViewStorageClass() returns the image storage class associated with the specified view.
The format of the GetCacheViewStorageClass method is:
ClassType GetCacheViewStorageClass(const CacheView *cache_view)
A description of each parameter follows:
GetCacheViewVirtualMetacontent() returns the meta-content corresponding with the last call to GetCacheViewVirtualMetacontent(). The meta-content is virtual and therefore cannot be updated.
The format of the GetCacheViewVirtualMetacontent() method is:
const void *GetCacheViewVirtualMetacontent( const CacheView *cache_view)
A description of each parameter follows:
GetCacheViewVirtualPixelQueue() returns the the pixels associated with the last call to GetCacheViewVirtualPixels(). The pixels are virtual and therefore cannot be updated.
The format of the GetCacheViewVirtualPixelQueue() method is:
const Quantum *GetCacheViewVirtualPixelQueue( const CacheView *cache_view)
A description of each parameter follows:
GetCacheViewVirtualPixels() gets virtual pixels from the in-memory or disk pixel cache as defined by the geometry parameters. A pointer to the pixels is returned if the pixels are transferred, otherwise a NULL is returned.
The format of the GetCacheViewVirtualPixels method is:
const Quantum *GetCacheViewVirtualPixels( const CacheView *cache_view,const ssize_t x,const ssize_t y, const size_t columns,const size_t rows,ExceptionInfo *exception)
A description of each parameter follows:
GetOneCacheViewAuthenticPixel() returns a single pixel at the specified (x,y) location. The image background color is returned if an error occurs.
The format of the GetOneCacheViewAuthenticPixel method is:
MagickBooleaNType GetOneCacheViewAuthenticPixel( const CacheView *cache_view,const ssize_t x,const ssize_t y, Quantum *pixel,ExceptionInfo *exception)
A description of each parameter follows:
GetOneCacheViewVirtualPixel() returns a single pixel at the specified (x,y) location. The image background color is returned if an error occurs. If you plan to modify the pixel, use GetOneCacheViewAuthenticPixel() instead.
The format of the GetOneCacheViewVirtualPixel method is:
MagickBooleanType GetOneCacheViewVirtualPixel( const CacheView *cache_view,const ssize_t x,const ssize_t y, Quantum *pixel,ExceptionInfo *exception)
A description of each parameter follows:
GetOneCacheViewVirtualPixelInfo() returns a single pixel at the specified (x,y) location. The image background color is returned if an error occurs. If you plan to modify the pixel, use GetOneCacheViewAuthenticPixel() instead.
The format of the GetOneCacheViewVirtualPixelInfo method is:
MagickBooleanType GetOneCacheViewVirtualPixelInfo( const CacheView *cache_view,const ssize_t x,const ssize_t y, PixelInfo *pixel,ExceptionInfo *exception)
A description of each parameter follows:
GetOneCacheViewVirtualMethodPixel() returns a single virtual pixel at the specified (x,y) location. The image background color is returned if an error occurs. If you plan to modify the pixel, use GetOneCacheViewAuthenticPixel() instead.
The format of the GetOneCacheViewVirtualPixel method is:
MagickBooleanType GetOneCacheViewVirtualMethodPixel( const CacheView *cache_view, const VirtualPixelMethod virtual_pixel_method,const ssize_t x, const ssize_t y,Quantum *pixel,ExceptionInfo *exception)
A description of each parameter follows:
QueueCacheViewAuthenticPixels() queues authentic pixels from the in-memory or disk pixel cache as defined by the geometry parameters. A pointer to the pixels is returned if the pixels are transferred, otherwise a NULL is returned.
The format of the QueueCacheViewAuthenticPixels method is:
Quantum *QueueCacheViewAuthenticPixels(CacheView *cache_view, const ssize_t x,const ssize_t y,const size_t columns, const size_t rows,ExceptionInfo *exception)
A description of each parameter follows:
SetCacheViewStorageClass() sets the image storage class associated with the specified view.
The format of the SetCacheViewStorageClass method is:
MagickBooleanType SetCacheViewStorageClass(CacheView *cache_view, const ClassType storage_class,ExceptionInfo *exception)
A description of each parameter follows:
SetCacheViewVirtualPixelMethod() sets the virtual pixel method associated with the specified cache view.
The format of the SetCacheViewVirtualPixelMethod method is:
MagickBooleanType SetCacheViewVirtualPixelMethod(CacheView *cache_view, const VirtualPixelMethod virtual_pixel_method)
A description of each parameter follows:
SyncCacheViewAuthenticPixels() saves the cache view pixels to the in-memory or disk cache. It returns MagickTrue if the pixel region is flushed, otherwise MagickFalse.
The format of the SyncCacheViewAuthenticPixels method is:
MagickBooleanType SyncCacheViewAuthenticPixels(CacheView *cache_view, ExceptionInfo *exception)
A description of each parameter follows: