|
- /*
- * libpipi Pathetic image processing interface library
- * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
- * All Rights Reserved
- *
- * $Id$
- *
- * This library is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- /*
- * imlib.c: ImLib I/O functions
- */
-
- #include "config.h"
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- #include <Imlib2.h>
-
- #include "pipi.h"
- #include "pipi_internals.h"
-
- static int pipi_free_imlib2(pipi_image_t *);
-
- pipi_image_t *pipi_load_imlib2(const char *name)
- {
- pipi_image_t *img;
- Imlib_Image priv = imlib_load_image(name);
-
- if(!priv)
- return NULL;
-
- imlib_context_set_image(priv);
- img = pipi_new(imlib_image_get_width(), imlib_image_get_height());
-
- img->p[PIPI_PIXELS_RGBA_C].pixels = imlib_image_get_data();
- img->p[PIPI_PIXELS_RGBA_C].w = img->w;
- img->p[PIPI_PIXELS_RGBA_C].h = img->h;
- img->p[PIPI_PIXELS_RGBA_C].pitch = 4 * img->w;
- img->p[PIPI_PIXELS_RGBA_C].bpp = 32;
- img->p[PIPI_PIXELS_RGBA_C].bytes = 4 * img->w * img->h;
- img->last_modified = PIPI_PIXELS_RGBA_C;
-
- img->codec_priv = (void *)priv;
- img->codec_format = PIPI_PIXELS_RGBA_C;
- img->codec_free = pipi_free_imlib2;
-
- img->wrap = 0;
- img->u8 = 1;
-
- return img;
- }
-
- int pipi_save_imlib2(pipi_image_t *img, const char *name)
- {
- if(!img->codec_priv)
- {
- Imlib_Image priv = imlib_create_image(img->w, img->h);
- void *data;
-
- imlib_context_set_image(priv);
- data = imlib_image_get_data();
-
- /* FIXME: check pitch differences here */
- if(img->last_modified == PIPI_PIXELS_RGBA_C)
- {
- memcpy(data, img->p[PIPI_PIXELS_RGBA_C].pixels,
- 4 * img->w * img->h);
- free(img->p[PIPI_PIXELS_RGBA_C].pixels);
- }
-
- img->p[PIPI_PIXELS_RGBA_C].pixels = data;
- img->p[PIPI_PIXELS_RGBA_C].w = imlib_image_get_width();
- img->p[PIPI_PIXELS_RGBA_C].h = imlib_image_get_height();
- img->p[PIPI_PIXELS_RGBA_C].pitch = 4 * imlib_image_get_width();
- img->p[PIPI_PIXELS_RGBA_C].bpp = 32;
- img->p[PIPI_PIXELS_RGBA_C].bytes = 4 * img->w * img->h;
-
- img->codec_priv = (void *)priv;
- img->codec_format = PIPI_PIXELS_RGBA_C;
- img->codec_free = pipi_free_imlib2;
-
- img->wrap = 0;
- img->u8 = 1;
- }
-
- pipi_getpixels(img, img->codec_format);
- imlib_context_set_image(img->codec_priv);
- imlib_save_image(name);
-
- return 0;
- }
-
- /*
- * XXX: The following functions are local.
- */
-
- static int pipi_free_imlib2(pipi_image_t *img)
- {
- imlib_context_set_image(img->codec_priv);
- imlib_free_image();
-
- return 0;
- }
|