quadEM  7-0
NDFileMagick.h
Go to the documentation of this file.
1 /*
2  * NDFileMagick.h
3  * Writes NDArrays to any file format supported by ImageMagick
4  * Mark Rivers
5  * September 20, 2010
6  */
7 
8 #ifndef DRV_NDFileMagick_H
9 #define DRV_NDFileMagick_H
10 
11 #include "NDPluginFile.h"
12 #include "Magick++.h"
13 using namespace Magick;
14 using namespace std;
15 
16 #define NDFileMagickQualityString "MAGICK_QUALITY" /* (asynInt32, r/w) File quality */
17 #define NDFileMagickCompressTypeString "MAGICK_COMPRESS_TYPE" /* (asynInt32, r/w) Compression type */
18 #define NDFileMagickBitDepthString "MAGICK_BIT_DEPTH" /* (asynInt32, r/w) Bit depth */
19 
23 public:
24  NDFileMagick(const char *portName, int queueSize, int blockingCallbacks,
25  const char *NDArrayPort, int NDArrayAddr,
26  int priority, int stackSize);
27 
28  /* The methods that this class implements */
29  virtual asynStatus openFile(const char *fileName, NDFileOpenMode_t openMode, NDArray *pArray);
30  virtual asynStatus readFile(NDArray **pArray);
31  virtual asynStatus writeFile(NDArray *pArray);
32  virtual asynStatus closeFile();
33 
34 protected:
36  #define FIRST_NDFILE_MAGICK_PARAM NDFileMagickQuality
39 
40 private:
41  size_t sizeX;
42  size_t sizeY;
43  StorageType storageType;
44  NDColorMode_t colorMode;
45  ImageType imageType;
46  string colorMap;
47  Image image;
48  char fileName[MAX_FILENAME_LEN];
49 };
50 
51 #endif
Writes NDArrays to files using the GraphicsMagick library; can write many different file formats...
Definition: NDFileMagick.h:22
#define MAX_FILENAME_LEN
Maximum length of a filename or any of its components.
Definition: asynNDArrayDriver.h:12
int NDFileMagickBitDepth
Definition: NDFileMagick.h:38
NDColorMode_t
Enumeration of color modes for NDArray attribute "colorMode".
Definition: NDArray.h:29
int NDFileMagickCompressType
Definition: NDFileMagick.h:37
int NDFileMagickQuality
Definition: NDFileMagick.h:35
#define NDPLUGIN_API
Definition: NDPluginAPI.h:41
N-dimensional array class; each array has a set of dimensions, a data type, pointer to data...
Definition: NDArray.h:93
int NDFileOpenMode_t
Definition: NDPluginFile.h:17
Base class for NDArray file writing plugins; actual file writing plugins inherit from this class...
Definition: NDPluginFile.h:28