Initial import

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/imageio@1 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2014-07-19 07:44:42 +00:00
commit ef00f00cbe
2 changed files with 373 additions and 0 deletions
Executable
+31
View File
@@ -0,0 +1,31 @@
// ------------------------------------------------------------
// imageio.h
//
// Reading writing tiff images
//
// 12.03.2005, J.Ahrensfeld
// ------------------------------------------------------------
#ifndef IMAGEIO_H
#define IMAGEIO_H
#include "colortypes.h"
// ------------------------------------------------------------
typedef struct _image_t
{
UINT32 im_width, im_height, num_pixel, num_ch;
double *pColor_data;
} image_t;
// ------------------------------------------------------------
void ImageInit(image_t *pObj, int im_width, int im_height, int num_ch);
void ImageFree(image_t *pObj);
void ImageCopy(image_t *pSrc, image_t *pDst);
int ImageLoadTiff(image_t *pObj, char *filename);
int ImageSaveTiff(image_t *pObj, char *filename);
void ImageSetPixel(image_t *pObj, UINT32 u, UINT32 v, rgba_t color);
// ------------------------------------------------------------
#endif // IMAGEIO_H