/* * image.c: image I/O functions * $Id: image.c 413 2005-01-04 17:06:04Z sam $ * * Copyright: (c) 2004 Sam Hocevar * This program is free software; you can redistribute it and/or * modify it under the terms of the Do What The Fuck You Want To * Public License as published by Banlu Kemiyatorn. See * http://sam.zoy.org/projects/COPYING.WTFPL for more details. */ #include #include #include "config.h" #include "common.h" #if defined(HAVE_SDL_IMAGE_H) # include #elif defined(HAVE_IMLIB2_H) # include #elif defined(HAVE_CV_H) # include # include #else # error "No imaging library" #endif struct image *image_load(const char *name) { struct image *img; #if defined(HAVE_SDL_IMAGE_H) SDL_Surface *priv = IMG_Load(name); #elif defined(HAVE_IMLIB2_H) Imlib_Image priv = imlib_load_image(name); #elif defined(HAVE_CV_H) IplImage *priv = cvLoadImage(name, -1); #endif if(!priv) return NULL; img = malloc(sizeof(struct image)); #if defined(HAVE_SDL_IMAGE_H) img->width = priv->w; img->height = priv->h; img->pitch = priv->pitch; img->channels = priv->format->BytesPerPixel; img->pixels = priv->pixels; #elif defined(HAVE_IMLIB2_H) imlib_context_set_image(priv); img->width = imlib_image_get_width(); img->height = imlib_image_get_height(); img->pitch = 4 * imlib_image_get_width(); img->channels = 4; img->pixels = (char *)imlib_image_get_data(); #elif defined(HAVE_CV_H) img->width = priv->width; img->height = priv->height; img->pitch = priv->widthStep; img->channels = priv->nChannels; img->pixels = priv->imageData; #endif img->priv = (void *)priv; return img; } struct image *image_new(int width, int height) { struct image *img; #if defined(HAVE_SDL_IMAGE_H) SDL_Surface *priv; Uint32 rmask, gmask, bmask, amask; # if SDL_BYTEORDER == SDL_BIG_ENDIAN rmask = 0xff000000; gmask = 0x00ff0000; bmask = 0x0000ff00; amask = 0x00000000; # else rmask = 0x000000ff; gmask = 0x0000ff00; bmask = 0x00ff0000; amask = 0x00000000; # endif priv = SDL_CreateRGBSurface(SDL_SWSURFACE, width, height, 32, rmask, gmask, bmask, amask); #elif defined(HAVE_IMLIB2_H) Imlib_Image priv = imlib_create_image(width, height); #elif defined(HAVE_CV_H) IplImage *priv = cvCreateImage(cvSize(width, height), IPL_DEPTH_8U, 3); #endif if(!priv) return NULL; img = malloc(sizeof(struct image)); #if defined(HAVE_SDL_IMAGE_H) img->width = priv->w; img->height = priv->h; img->pitch = priv->pitch; img->channels = priv->format->BytesPerPixel; img->pixels = priv->pixels; #elif defined(HAVE_IMLIB2_H) imlib_context_set_image(priv); img->width = imlib_image_get_width(); img->height = imlib_image_get_height(); img->pitch = 4 * imlib_image_get_width(); img->channels = 4; img->pixels = (char *)imlib_image_get_data(); #elif defined(HAVE_CV_H) img->width = priv->width; img->height = priv->height; img->pitch = priv->widthStep; img->channels = priv->nChannels; img->pixels = priv->imageData; #endif img->priv = (void *)priv; return img; } void image_free(struct image *img) { #if defined(HAVE_SDL_IMAGE_H) SDL_FreeSurface(img->priv); #elif defined(HAVE_IMLIB2_H) imlib_context_set_image(img->priv); imlib_free_image(); #elif defined(HAVE_CV_H) IplImage *iplimg; iplimg = (IplImage *)img->priv; cvReleaseImage(&iplimg); #endif free(img); } void image_save(struct image *img, const char *name) { #if defined(HAVE_SDL_IMAGE_H) SDL_SaveBMP(img->priv, name); #elif defined(HAVE_IMLIB2_H) imlib_context_set_image(img->priv); imlib_save_image(name); #elif defined(HAVE_CV_H) cvSaveImage(name, img->priv); #endif } int getgray(struct image *img, int x, int y, int *g) { if(x < 0 || y < 0 || x >= img->width || y >= img->height) { *g = 255; return -1; } *g = (unsigned char)img->pixels[y * img->pitch + x * img->channels + 1]; return 0; } int getpixel(struct image *img, int x, int y, int *r, int *g, int *b) { if(x < 0 || y < 0 || x >= img->width || y >= img->height) { *r = 255; *g = 255; *b = 255; return -1; } *b = (unsigned char)img->pixels[y * img->pitch + x * img->channels]; *g = (unsigned char)img->pixels[y * img->pitch + x * img->channels + 1]; *r = (unsigned char)img->pixels[y * img->pitch + x * img->channels + 2]; return 0; } int setpixel(struct image *img, int x, int y, int r, int g, int b) { if(x < 0 || y < 0 || x >= img->width || y >= img->height) return -1; img->pixels[y * img->pitch + x * img->channels] = b; img->pixels[y * img->pitch + x * img->channels + 1] = g; img->pixels[y * img->pitch + x * img->channels + 2] = r; return 0; } void image_display(struct image *img) { #if defined(HAVE_SDL_IMAGE_H) //Nothing to do here #elif defined(HAVE_IMLIB2_H) //char name[BUFSIZ]; //static int i = 0; //sprintf(name, "image%i-%ix%i.png", i++, img->width, img->height); //imlib_context_set_image(img->priv); //imlib_save_image(name); //fprintf(stderr, "saved to %s\n", name); #elif defined(HAVE_CV_H) char name[BUFSIZ]; sprintf(name, "Image %p (%i x %i)", img, img->width, img->height); cvNamedWindow(name, 0); cvShowImage(name, img->priv); cvResizeWindow(name, img->width * 2, img->height * 2 + 50); while((unsigned char)cvWaitKey(0) != 0x1b) ; #endif }