% AcquireCacheViewIndexes() returns the indexes associated with the specified
% view.
%
+% Deprecated, replace with:
+%
+% GetCacheViewVirtualIndexQueue(cache_view);
+%
% The format of the AcquireCacheViewIndexes method is:
%
% const IndexPacket *AcquireCacheViewIndexes(const CacheView *cache_view)
% as defined by the geometry parameters. A pointer to the pixels is returned
% if the pixels are transferred, otherwise a NULL is returned.
%
+% Deprecated, replace with:
+%
+% GetCacheViewVirtualPixels(cache_view,x,y,columns,rows,exception);
+%
% The format of the AcquireCacheViewPixels method is:
%
% const PixelPacket *AcquireCacheViewPixels(const CacheView *cache_view,
% %
% %
% %
-% A c q u i r e I m a g e P i x e l s %
+% A c q u i r e I m a g e P i x e l s %
% % % %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% thread-safe. In a threaded environment, use GetCacheViewVirtualPixels() or
% GetCacheViewAuthenticPixels() instead.
%
+% Deprecated, replace with:
+%
+% GetVirtualPixels(image,x,y,columns,rows,exception);
+%
% The format of the AcquireImagePixels() method is:
%
% const PixelPacket *AcquireImagePixels(const Image *image,const long x,
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% AcquireIndexes() returns the black channel or the colormap indexes
-% associated with the last call to QueueAuthenticPixels() or GetVirtualPixels().
-% NULL is returned if the black channel or colormap indexes are not available.
+% associated with the last call to QueueAuthenticPixels() or
+% GetVirtualPixels(). NULL is returned if the black channel or colormap
+% indexes are not available.
+%
+% Deprecated, replace with:
+%
+% GetVirtualIndexQueue(image);
%
% The format of the AcquireIndexes() method is:
%
% location. The image background color is returned if an error occurs. If
% you plan to modify the pixel, use GetOneCacheViewAuthenticPixel() instead.
%
+% Deprecated, replace with:
+%
+% GetOneCacheViewVirtualPixel(cache_view,x,y,pixel,exception);
+%
% The format of the AcquireOneCacheViewPixel method is:
%
% MagickBooleanType AcquireOneCacheViewPixel(const CacheView *cache_view,
% (x,y) location. The image background color is returned if an error occurs.
% If you plan to modify the pixel, use GetOneCacheViewAuthenticPixel() instead.
%
+% Deprecated, replace with:
+%
+% GetOneCacheViewVirtualMethodPixel(cache_view,virtual_pixel_method,
+% x,y,pixel,exception);
+%
% The format of the AcquireOneCacheViewPixel method is:
%
% MagickBooleanType AcquireOneCacheViewVirtualPixel(
% location. The image background color is returned if an error occurs. If
% you plan to modify the pixel, use GetOnePixel() instead.
%
+% Deprecated, replace with:
+%
+% MagickPixelPacket pixel;
+% GetOneVirtualMagickPixel(image,x,y,&pixel,exception);
+%
% The format of the AcquireOneMagickPixel() method is:
%
% MagickPixelPacket AcquireOneMagickPixel(const Image image,const long x,
% The image background color is returned if an error occurs. If you plan to
% modify the pixel, use GetOnePixel() instead.
%
+% Deprecated, replace with:
+%
+% PixelPacket pixel;
+% GetOneVirtualPixel(image,x,y,&pixel,exception);
+%
% The format of the AcquireOnePixel() method is:
%
% PixelPacket AcquireOnePixel(const Image image,const long x,
% is returned if an error occurs. If you plan to modify the pixel, use
% GetOnePixel() instead.
%
+% Deprecated, replace with:
+%
+% PixelPacket pixel;
+% GetOneVirtualMethodPixel(image,virtual_pixel_method,x,y,&pixel,exception);
+%
% The format of the AcquireOneVirtualPixel() method is:
%
% PixelPacket AcquireOneVirtualPixel(const Image image,
% AcquirePixels() returns the pixels associated with the last call to
% QueueAuthenticPixels() or GetVirtualPixels().
%
+% Deprecated, replace with:
+%
+% GetVirtualPixelQueue(image);
+%
% The format of the AcquirePixels() method is:
%
% const PixelPacket *AcquirePixels(const Image image)
% AffinityImage() replaces the colors of an image with the closest color from
% a reference image.
%
+% Deprecated, replace with:
+%
+% RemapImage(quantize_info,image,affinity_image);
+%
% The format of the AffinityImage method is:
%
% MagickBooleanType AffinityImage(const QuantizeInfo *quantize_info,
% AffinityImages() replaces the colors of a sequence of images with the
% closest color from a reference image.
%
+% Deprecated, replace with:
+%
+% RemapImages(quantize_info,images,affinity_image);
+%
% The format of the AffinityImage method is:
%
% MagickBooleanType AffinityImages(const QuantizeInfo *quantize_info,
% AllocateImage() returns a pointer to an image structure initialized to
% default values.
%
+% Deprecated, replace with:
+%
+% AcquireImage(image_info);
+%
% The format of the AllocateImage method is:
%
% Image *AllocateImage(const ImageInfo *image_info)
% it is replaced. AllocateImageColormap() returns MagickTrue if successful,
% otherwise MagickFalse if there is not enough memory.
%
+% Deprecated, replace with:
+%
+% AcquireImageColormap(image,colors);
+%
% The format of the AllocateImageColormap method is:
%
% MagickBooleanType AllocateImageColormap(Image *image,
% default values. The next member of image points to the newly allocated
% image. If there is a memory shortage, next is assigned NULL.
%
+% Deprecated, replace with:
+%
+% AcquireNextImage(image_info,image);
+%
% The format of the AllocateNextImage method is:
%
% void AllocateNextImage(const ImageInfo *image_info,Image *image)
% image averaged. On failure, a NULL image is returned and exception
% describes the reason for the failure.
%
+% Deprecated, replace with:
+%
+% EvaluateImages(images,MeanEvaluateOperator,exception);
+%
% The format of the AverageImages method is:
%
% Image *AverageImages(Image *images,ExceptionInfo *exception)
% Extract a channel from the image. A channel is a particular color component
% of each pixel in the image.
%
+% Deprecated, replace with:
+%
+% SeparateImageChannel(image,channel);
+%
% The format of the ChannelImage method is:
%
% unsigned int ChannelImage(Image *image,const ChannelType channel)
% ClipPathImage() sets the image clip mask based any clipping path information
% if it exists.
%
+% Deprecated, replace with:
+%
+% ClipImagePath(image,pathname,inside);
+%
% The format of the ClipImage method is:
%
% MagickBooleanType ClipPathImage(Image *image,const char *pathname,
%
% CloneImageAttributes() clones one or more image attributes.
%
+% Deprecated, replace with:
+%
+% CloneImageProperties(image,clone_image);
+%
% The format of the CloneImageAttributes method is:
%
% MagickBooleanType CloneImageAttributes(Image *image,
% CloseCacheView() closes the specified view returned by a previous call to
% OpenCacheView().
%
+% Deprecated, replace with:
+%
+% DestroyCacheView(view_info);
+%
% The format of the CloseCacheView method is:
%
% CacheView *CloseCacheView(CacheView *view_info)
%
% DeleteImageAttribute() deletes an attribute from the image.
%
+% Deprecated, replace with:
+%
+% DeleteImageProperty(image,key);
+%
% The format of the DeleteImageAttribute method is:
%
% MagickBooleanType DeleteImageAttribute(Image *image,const char *key)
% It returns MagickTrue if the entry is deleted otherwise MagickFalse if no
% entry is found in the registry that matches the id.
%
+% Deprecated, replace with:
+%
+% char key[MaxTextExtent];
+% FormatMagickString(key,MaxTextExtent,"%ld\n",id);
+% DeleteImageRegistry(key);
+%
% The format of the DeleteMagickRegistry method is:
%
% MagickBooleanType DeleteMagickRegistry(const long id)
%
% DestroyMagickRegistry() deallocates memory associated the magick registry.
%
+% Deprecated, replace with:
+%
+% RegistryComponentTerminus();
+%
% The format of the DestroyMagickRegistry method is:
%
% void DestroyMagickRegistry(void)
% DescribeImage() describes an image by printing its attributes to the file.
% Attributes include the image width, height, size, and others.
%
+% Deprecated, replace with:
+%
+% IdentifyImage(image,file,verbose);
+%
% The format of the DescribeImage method is:
%
% MagickBooleanType DescribeImage(Image *image,FILE *file,
%
% DestroyImages() destroys an image list.
%
+% Deprecated, replace with:
+%
+% DestroyImageList(image);
+%
% The format of the DestroyImages method is:
%
% void DestroyImages(Image *image)
%
% DestroyMagick() destroys the ImageMagick environment.
%
+% Deprecated, replace with:
+%
+% MagickCoreTerminus();
+%
% The format of the DestroyMagick function is:
%
% DestroyMagick(void)
%
% DispatchImage(image,0,0,640,1,"RGB",CharPixel,pixels,exception);
%
+% Deprecated, replace with:
+%
+% ExportImagePixels(image,x_offset,y_offset,columns,rows,map,type,pixels,
+% exception);
+%
% The format of the DispatchImage method is:
%
% unsigned int DispatchImage(const Image *image,const long x_offset,
%
% The format of the ExtractSubimageFromImageImage method is:
%
-% Image *ExtractSubimageFromImage(const Image *image,const Image *reference,
-% ExceptionInfo *exception)
+% Image *ExtractSubimageFromImage(const Image *image,
+% const Image *reference,ExceptionInfo *exception)
%
% A description of each parameter follows:
%
%
% FlattenImages() Obsolete Function: Use MergeImageLayers() instead.
%
+% Deprecated, replace with:
+%
+% MergeImageLayers(image,FlattenLayer,exception);
+%
% The format of the FlattenImage method is:
%
% Image *FlattenImage(Image *image,ExceptionInfo *exception)
% method is used by MatteFloodFill() and other algorithms which compare
% two opacity values.
%
+% Deprecated, replace with:
+%
+% IsOpacitySimilar(image,p,q);
+%
% The format of the FuzzyOpacityCompare method is:
%
% void FuzzyOpacityCompare(const Image *image,const PixelPacket *p,
% defined by the geometry parameters. A pointer to the pixels is returned if
% the pixels are transferred, otherwise a NULL is returned.
%
+% Deprecated, replace with:
+%
+% GetCacheViewAuthenticPixels(cache_view,x,y,columns,rows,
+% GetCacheViewException(cache_view));
+%
% The format of the GetCacheView method is:
%
% PixelPacket *GetCacheView(CacheView *cache_view,const long x,
% GetCacheViewIndexes() returns the indexes associated with the specified
% view.
%
+% Deprecated, replace with:
+%
+% GetCacheViewAuthenticIndexQueue(cache_view);
+%
% The format of the GetCacheViewIndexes method is:
%
% IndexPacket *GetCacheViewIndexes(CacheView *cache_view)
% defined by the geometry parameters. A pointer to the pixels is returned if
% the pixels are transferred, otherwise a NULL is returned.
%
+% Deprecated, replace with:
+%
+% GetCacheViewAuthenticPixels(cache_view,x,y,columns,rows,
+% GetCacheViewException(cache_view));
+%
% The format of the GetCacheViewPixels method is:
%
% PixelPacket *GetCacheViewPixels(CacheView *cache_view,const long x,
% GetImageClippingPathAttribute() searches the list of image attributes and
% returns a pointer to a clipping path if it exists otherwise NULL.
%
+% Deprecated, replace with:
+%
+% GetImageAttribute(image,"8BIM:1999,2998");
+%
% The format of the GetImageClippingPathAttribute method is:
%
% const ImageAttribute *GetImageClippingPathAttribute(Image *image)
% GetImageFromMagickRegistry() gets an image from the registry as defined by
% its name. If the image is not found, a NULL image is returned.
%
+% Deprecated, replace with:
+%
+% GetImageRegistry(ImageRegistryType,name,exception);
+%
% The format of the GetImageFromMagickRegistry method is:
%
% Image *GetImageFromMagickRegistry(const char *name,long *id,
% GetImageGeometry() returns a region as defined by the geometry string with
% respect to the image and its gravity.
%
+% Deprecated, replace with:
+%
+% if (size_to_fit != MagickFalse)
+% ParseRegionGeometry(image,geometry,region_info,&image->exception); else
+% ParsePageGeometry(image,geometry,region_info,&image->exception);
+%
% The format of the GetImageGeometry method is:
%
% int GetImageGeometry(Image *image,const char *geometry,
%
% GetImageList() returns an image at the specified position in the list.
%
+% Deprecated, replace with:
+%
+% CloneImage(GetImageFromList(images,(long) offset),0,0,MagickTrue,
+% exception);
+%
% The format of the GetImageList method is:
%
% Image *GetImageList(const Image *images,const long offset,
% GetImageListIndex() returns the position in the list of the specified
% image.
%
+% Deprecated, replace with:
+%
+% GetImageIndexInList(images);
+%
% The format of the GetImageListIndex method is:
%
% long GetImageListIndex(const Image *images)
%
% GetImageListSize() returns the number of images in the list.
%
+% Deprecated, replace with:
+%
+% GetImageListLength(images);
+%
% The format of the GetImageListSize method is:
%
% unsigned long GetImageListSize(const Image *images)
% array has been updated, the changes must be saved back to the underlying
% image using SyncAuthenticPixels() or they may be lost.
%
+% Deprecated, replace with:
+%
+% GetAuthenticPixels(image,x,y,columns,rows,&image->exception);
+%
% The format of the GetImagePixels() method is:
%
% PixelPacket *GetImagePixels(Image *image,const long x,const long y,
% with the last call to QueueAuthenticPixels() or GetVirtualPixels(). NULL is
% returned if the black channel or colormap indexes are not available.
%
+% Deprecated, replace with:
+%
+% GetAuthenticIndexQueue(image);
+%
% The format of the GetIndexes() method is:
%
% IndexPacket *GetIndexes(const Image *image)
% geometry is modified as determined by the meta characters: %, !, <, >,
% and ~.
%
+% Deprecated, replace with:
+%
+% ParseMetaGeometry(geometry,x,y,width,height);
+%
% The format of the GetMagickGeometry method is:
%
% unsigned int GetMagickGeometry(const char *geometry,long *x,long *y,
%
% GetNextImage() returns the next image in a list.
%
+% Deprecated, replace with:
+%
+% GetNextImageInList(images);
+%
% The format of the GetNextImage method is:
%
% Image *GetNextImage(const Image *images)
%
% GetNextImageAttribute() gets the next image attribute.
%
+% Deprecated, replace with:
+%
+% const char *property;
+% property=GetNextImageProperty(image);
+% if (property != (const char *) NULL)
+% GetImageAttribute(image,property);
+%
% The format of the GetNextImageAttribute method is:
%
% const ImageAttribute *GetNextImageAttribute(const Image *image)
%
% GetNumberScenes() returns the number of images in the list.
%
+% Deprecated, replace with:
+%
+% GetImageListLength(image);
+%
% The format of the GetNumberScenes method is:
%
% unsigned int GetNumberScenes(const Image *images)
% GetOnePixel() returns a single pixel at the specified (x,y) location.
% The image background color is returned if an error occurs.
%
+% Deprecated, replace with:
+%
+% GetOneAuthenticPixel(image,x,y,&pixel,&image->exception);
+%
% The format of the GetOnePixel() method is:
%
% PixelPacket GetOnePixel(const Image image,const long x,const long y)
% GetPixels() returns the pixels associated with the last call to
% QueueAuthenticPixels() or GetAuthenticPixels().
%
+% Deprecated, replace with:
+%
+% GetAuthenticPixelQueue(image);
+%
% The format of the GetPixels() method is:
%
% PixelPacket *GetPixels(const Image image)
%
% GetPreviousImage() returns the previous image in a list.
%
+% Deprecated, replace with:
+%
+% GetPreviousImageInList(images));
+%
% The format of the GetPreviousImage method is:
%
% Image *GetPreviousImage(const Image *images)
%
% InitializeMagick() initializes the ImageMagick environment.
%
+% Deprecated, replace with:
+%
+% MagickCoreGenesis(path,MagickFalse);
+%
% The format of the InitializeMagick function is:
%
% InitializeMagick(const char *path)
alpha[n]=1.0;
if (image->matte != MagickFalse)
{
- alpha[n]=QuantumScale*((MagickRealType) GetAlphaPixelComponent(p));
+ alpha[n]=QuantumScale*((MagickRealType)
+ GetAlphaPixelComponent(p));
pixels[n].red*=alpha[n];
pixels[n].green*=alpha[n];
pixels[n].blue*=alpha[n];
% InterpretImageAttributes() replaces any embedded formatting characters with
% the appropriate image attribute and returns the translated text.
%
+% Deprecated, replace with:
+%
+% InterpretImageProperties(image_info,image,embed_text);
+%
% The format of the InterpretImageAttributes method is:
%
% char *InterpretImageAttributes(const ImageInfo *image_info,Image *image,
% appropriatally. This effectivally maps a greyscale gradient into the given
% color gradient.
%
+% Deprecated, replace with:
+%
+% LevelColorsImageChannel(image,channel,black_color,white_color,invert);
+%
% The format of the LevelImageColors method is:
%
% MagickBooleanType LevelImageColors(Image *image,const ChannelType channel,
%
% LiberateSemaphoreInfo() relinquishes a semaphore.
%
+% Deprecated, replace with:
+%
+% UnlockSemaphoreInfo(*semaphore_info);
+%
% The format of the LiberateSemaphoreInfo method is:
%
% LiberateSemaphoreInfo(void **semaphore_info)
%
% MagickIncarnate() initializes the ImageMagick environment.
%
+% Deprecated, replace with:
+%
+% MagickCoreGenesis(path,MagickFalse);
+%
% The format of the MagickIncarnate function is:
%
% MagickIncarnate(const char *path)
% MapImage() replaces the colors of an image with the closest color from a
% reference image.
%
+% Deprecated, replace with:
+%
+% QuantizeInfo quantize_info;
+% GetQuantizeInfo(&quantize_info);
+% quantize_info.dither=dither;
+% RemapImage(&quantize_info,image,map_image);
+%
% The format of the MapImage method is:
%
% MagickBooleanType MapImage(Image *image,const Image *map_image,
% MapImages() replaces the colors of a sequence of images with the closest
% color from a reference image.
%
+% Deprecated, replace with:
+%
+% QuantizeInfo quantize_info;
+% GetQuantizeInfo(&quantize_info);
+% quantize_info.dither=dither;
+% RemapImages(&quantize_info,images,map_image);
+%
% The format of the MapImage method is:
%
% MagickBooleanType MapImages(Image *images,Image *map_image,
%
% MaximumImages() returns the maximum intensity of an image sequence.
%
+% Deprecated, replace with:
+%
+% EvaluateImages(images,MinEvaluateOperator,exception);
+%
% The format of the MaxImages method is:
%
% Image *MaximumImages(Image *images,ExceptionInfo *exception)
%
% MinimumImages() returns the minimum intensity of an image sequence.
%
+% Deprecated, replace with:
+%
+% EvaluateImages(images,MinEvaluateOperator,exception);
+%
% The format of the MinimumImages method is:
%
% Image *MinimumImages(Image *images,ExceptionInfo *exception)
%
% MosaicImages() Obsolete Function: Use MergeImageLayers() instead.
%
+% Deprecated, replace with:
+%
+% MergeImageLayers(image,MosaicLayer,exception);
+%
% The format of the MosaicImage method is:
%
% Image *MosaicImages(const Image *image,ExceptionInfo *exception)
% OpenCacheView() opens a view into the pixel cache, using the
% VirtualPixelMethod that is defined within the given image itself.
%
+% Deprecated, replace with:
+%
+% AcquireCacheView(image);
+%
% The format of the OpenCacheView method is:
%
% CacheView *OpenCacheView(const Image *image)
% color red at intensities of 100 and 102 respectively are now
% interpreted as the same color for the purposes of the floodfill.
%
+% Deprecated, replace with:
+%
+% FloodfillPaintImage(image,channel,draw_info,target,x,y,
+% method == FloodfillMethod ? MagickFalse : MagickTrue);
+%
% The format of the PaintFloodfillImage method is:
%
% MagickBooleanType PaintFloodfillImage(Image *image,
% For example, set fuzz to 10 and the color red at intensities of 100 and
% 102 respectively are now interpreted as the same color.
%
+% Deprecated, replace with:
+%
+% OpaquePaintImageChannel(image,DefaultChannels,target,fill,MagickFalse);
+% OpaquePaintImageChannel(image,channel,target,fill,MagickFalse);
+%
% The format of the PaintOpaqueImage method is:
%
% MagickBooleanType PaintOpaqueImage(Image *image,
% For example, set fuzz to 10 and the color red at intensities of 100 and
% 102 respectively are now interpreted as the same color.
%
+% Deprecated, replace with:
+%
+% TransparentPaintImage(image,target,opacity,MagickFalse);
+%
% The format of the PaintTransparentImage method is:
%
% MagickBooleanType PaintTransparentImage(Image *image,
% geometry is modified as determined by the meta characters: %, !, <,
% and >.
%
+% Deprecated, replace with:
+%
+% ParseMetaGeometry(geometry,x,y,width,height);
+%
% The format of the ParseImageGeometry method is:
%
% int ParseImageGeometry(char *geometry,long *x,long *y,
% ParseSizeGeometry() returns a region as defined by the geometry string with
% respect to the image dimensions and aspect ratio.
%
+% Deprecated, replace with:
+%
+% ParseMetaGeometry(geometry,®ion_info->x,®ion_info->y,
+% ®ion_info->width,®ion_info->height);
+%
% The format of the ParseSizeGeometry method is:
%
% MagickStatusType ParseSizeGeometry(const Image *image,
%
% PopImageList() removes the last image in the list.
%
+% Deprecated, replace with:
+%
+% RemoveLastImageFromList(images);
+%
% The format of the PopImageList method is:
%
% Image *PopImageList(Image **images)
% PostscriptGeometry() replaces any page mneumonic with the equivalent size in
% picas.
%
+% Deprecated, replace with:
+%
+% GetPageGeometry(page);
+%
% The format of the PostscriptGeometry method is:
%
% char *PostscriptGeometry(const char *page)
%
% PushImageList() adds an image to the end of the list.
%
+% Deprecated, replace with:
+%
+% AppendImageToList(images,CloneImageList(image,exception));
+%
% The format of the PushImageList method is:
%
% unsigned int PushImageList(Image *images,const Image *image,
% distance measure is normalized to a range between 0 and 1. It is
% independent of the range of red, green, and blue values in your image.
%
+% Deprecated, replace with:
+%
+% GetImageQuantizeError(image);
%
% The format of the QuantizationError method is:
%
% in conjunction with GetNextImageAttribute() to iterate over all the values
% associated with an image.
%
+% Deprecated, replace with:
+%
+% ResetImagePropertyIterator(image);
+%
% The format of the ResetImageAttributeIterator method is:
%
% ResetImageAttributeIterator(const ImageInfo *image)
% defined by the geometry parameters. A pointer to the pixels is returned
% if the pixels are transferred, otherwise a NULL is returned.
%
+% Deprecated, replace with:
+%
+% QueueCacheViewAuthenticPixels(cache_view,x,y,columns,rows,
+% GetCacheViewException(cache_view));
+%
% The format of the SetCacheViewPixels method is:
%
% PixelPacket *SetCacheViewPixels(CacheView *cache_view,const long x,
% attribute value. If it is not found in the list, the attribute name
% and value is added to the list.
%
+% Deprecated, replace with:
+%
+% SetImageProperty(image,key,value);
+%
% The format of the SetImageAttribute method is:
%
% MagickBooleanType SetImageAttribute(Image *image,const char *key,
% array has been updated, the changes must be saved back to the underlying
% image using SyncAuthenticPixels() or they may be lost.
%
+% Deprecated, replace with:
+%
+% QueueAuthenticPixels(image,x,y,columns,rows,&image->exception);
+%
% The format of the SetImagePixels() method is:
%
% PixelPacket *SetImagePixels(Image *image,const long x,const long y,
%
% ShiftImageList() removes an image from the beginning of the list.
%
+% Deprecated, replace with:
+%
+% RemoveFirstImageFromList(images);
+%
% The format of the ShiftImageList method is:
%
% Image *ShiftImageList(Image **images)
%
% SizeBlob() returns the current length of the image file or blob.
%
+% Deprecated, replace with:
+%
+% GetBlobSize(image);
+%
% The format of the SizeBlob method is:
%
% off_t SizeBlob(Image *image)
% cache. It returns MagickTrue if the pixel region is synced, otherwise
% MagickFalse.
%
+% Deprecated, replace with:
+%
+% SyncCacheViewAuthenticPixels(cache_view,GetCacheViewException(cache_view));
+%
% The format of the SyncCacheView method is:
%
% MagickBooleanType SyncCacheView(CacheView *cache_view)
% or disk cache. It returns MagickTrue if the pixel region is flushed,
% otherwise MagickFalse.
%
+% Deprecated, replace with:
+%
+% SyncCacheViewAuthenticPixels(cache_view,GetCacheViewException(cache_view));
+%
% The format of the SyncCacheViewPixels method is:
%
% MagickBooleanType SyncCacheViewPixels(CacheView *cache_view)
% The method returns MagickTrue if the pixel region is synced, otherwise
% MagickFalse.
%
+% Deprecated, replace with:
+%
+% SyncAuthenticPixels(image,&image->exception);
+%
% The format of the SyncImagePixels() method is:
%
% MagickBooleanType SyncImagePixels(Image *image)
% weights are rescaled to normalize the range of the transformed values to
% be [0..QuantumRange].
%
+% Deprecated, replace with:
+%
+% TransformImageColorspace(image,colorspace);
+%
% The format of the TransformColorspace method is:
%
% unsigned int (void) TransformColorspace(Image *image,
% TranslateText() replaces any embedded formatting characters with the
% appropriate image attribute and returns the translated text.
%
+% Deprecated, replace with:
+%
+% InterpretImageProperties(image_info,image,embed_text);
+%
% The format of the TranslateText method is:
%
% char *TranslateText(const ImageInfo *image_info,Image *image,
%
% UnshiftImageList() adds the image to the beginning of the list.
%
+% Deprecated, replace with:
+%
+% PrependImageToList(images,CloneImageList(image,exception));
+%
% The format of the UnshiftImageList method is:
%
% unsigned int UnshiftImageList(Image *images,const Image *image,
% not range from 0 to the number of colors in the colormap an exception
% issued and 0 is returned.
%
+% Deprecated, replace with:
+%
+% ConstrainColormapIndex(image,index);
+%
% The format of the ValidateColormapIndex method is:
%
% IndexPacket ValidateColormapIndex(Image *image,const unsigned int index)
% o index: This integer is the colormap index.
%
*/
-
MagickExport IndexPacket ValidateColormapIndex(Image *image,
const unsigned long index)
{