/* [<][>][^][v][top][bottom][index][help] */
/*
% Copyright (C) 2008 - 2009 GraphicsMagick Group
%
% This program is covered by multiple licenses, which are described in
% Copyright.txt. You should have received a copy of Copyright.txt with this
% package; otherwise see http://www.graphicsmagick.org/www/Copyright.html.
%
% Interfaces to convert to and from the string form of enumeration values.
%
% Written by Bob Friesenhahn, June 2008.
%
*/
#ifndef _ENUM_STRINGS_H
#define _ENUM_STRINGS_H
#include "magick/image.h"
#include "magick/blob.h"
#include "magick/compare.h"
#include "magick/confirm_access.h"
#include "magick/constitute.h"
#include "magick/operator.h"
#include "magick/pixel_cache.h"
#include "magick/render.h"
#include "magick/resource.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
extern MagickExport ChannelType StringToChannelType(const char *option);
extern MagickExport ColorspaceType StringToColorspaceType(const char *colorspace_string);
extern MagickExport CompositeOperator StringToCompositeOperator(const char *option);
extern MagickExport CompressionType StringToCompressionType(const char *option);
extern MagickExport EndianType StringToEndianType(const char *option);
extern MagickExport FilterTypes StringToFilterTypes(const char *option);
extern MagickExport GravityType StringToGravityType(const char *option);
extern MagickExport HighlightStyle StringToHighlightStyle(const char *option);
extern MagickExport ImageType StringToImageType(const char *option);
extern MagickExport InterlaceType StringToInterlaceType(const char *option);
extern MagickExport MetricType StringToMetricType(const char *option);
extern MagickExport PreviewType StringToPreviewType(const char *option);
extern MagickExport QuantumOperator StringToQuantumOperator(const char *option);
extern MagickExport ResourceType StringToResourceType(const char *option);
extern MagickExport VirtualPixelMethod StringToVirtualPixelMethod(const char *option); extern MagickExport const char *BlobModeToString(BlobMode blob_mode);
extern MagickExport const char *ChannelTypeToString(const ChannelType channel);
extern MagickExport const char *ClassTypeToString(const ClassType class_type);
extern MagickExport const char *ColorspaceTypeToString(const ColorspaceType colorspace);
extern MagickExport const char *CompositeOperatorToString(const CompositeOperator composite_op);
extern MagickExport const char *CompressionTypeToString(const CompressionType compression_type);
extern MagickExport const char *ConfirmAccessModeToString(const ConfirmAccessMode access_mode);
extern MagickExport const char *EndianTypeToString(const EndianType endian_type);
extern MagickExport const char *HighlightStyleToString(const HighlightStyle difference_algorithm);
extern MagickExport const char *ImageTypeToString(const ImageType image_type);
extern MagickExport const char *InterlaceTypeToString(const InterlaceType interlace_type);
extern MagickExport const char *MapModeToString(MapMode map_mode);
extern MagickExport const char *MetricTypeToString(MetricType metric);
extern MagickExport const char *OrientationTypeToString(const OrientationType orientation_type);
extern MagickExport const char *QuantumOperatorToString(const QuantumOperator quantum_operator);
extern MagickExport const char *QuantumSampleTypeToString(const QuantumSampleType sample_type);
extern MagickExport const char *QuantumTypeToString(const QuantumType quantum_type);
extern MagickExport const char *ResizeFilterToString(const FilterTypes filter);
extern MagickExport const char *StorageTypeToString(const StorageType storage_type);
extern MagickExport const char *StretchTypeToString(StretchType stretch);
extern MagickExport const char *StyleTypeToString(StyleType style);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _ENUM_STRINGS_H */
/*
* Local Variables:
* mode: c
* c-basic-offset: 2
* fill-column: 78
* End:
*/