2000-05-04 14:53:48 +00:00
|
|
|
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
|
|
|
|
1999-12-02 23:57:25 +00:00
|
|
|
|
/* GdkPixbuf library - test program
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
|
|
|
|
*
|
|
|
|
|
* Author: Federico Mena-Quintero <federico@gimp.org>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2000-05-28 03:19:28 +00:00
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
1999-12-02 23:57:25 +00:00
|
|
|
|
#include "gdk-pixbuf.h"
|
2001-03-07 14:49:21 +00:00
|
|
|
|
#include <glib-object.h>
|
1999-12-02 23:57:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-05-04 14:53:48 +00:00
|
|
|
|
static void
|
|
|
|
|
store_pixel (guchar *pixels,
|
|
|
|
|
int pixel,
|
|
|
|
|
gboolean alpha)
|
|
|
|
|
{
|
|
|
|
|
if (alpha) {
|
|
|
|
|
pixels[0] = pixel >> 24;
|
|
|
|
|
pixels[1] = pixel >> 16;
|
|
|
|
|
pixels[2] = pixel >> 8;
|
|
|
|
|
pixels[3] = pixel;
|
|
|
|
|
} else {
|
|
|
|
|
pixels[0] = pixel >> 16;
|
|
|
|
|
pixels[1] = pixel >> 8;
|
|
|
|
|
pixels[2] = pixel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
fill_with_pixel (GdkPixbuf *pixbuf,
|
|
|
|
|
int pixel)
|
|
|
|
|
{
|
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
|
|
for (x = 0; x < gdk_pixbuf_get_width (pixbuf); x++) {
|
|
|
|
|
for (y = 0; y < gdk_pixbuf_get_height (pixbuf); y++) {
|
|
|
|
|
store_pixel (gdk_pixbuf_get_pixels (pixbuf)
|
|
|
|
|
+ y * gdk_pixbuf_get_rowstride (pixbuf)
|
|
|
|
|
+ x * gdk_pixbuf_get_n_channels (pixbuf),
|
|
|
|
|
pixel,
|
|
|
|
|
gdk_pixbuf_get_has_alpha (pixbuf));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
load_pixel (const guchar *pixels,
|
|
|
|
|
gboolean alpha)
|
|
|
|
|
{
|
|
|
|
|
if (alpha)
|
|
|
|
|
return (((((pixels[0] << 8) | pixels[1]) << 8) | pixels[2]) << 8) | pixels[3];
|
|
|
|
|
else
|
|
|
|
|
return (((pixels[0] << 8) | pixels[1]) << 8) | pixels[2];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
simple_composite_test_one (GdkInterpType type,
|
|
|
|
|
int source_pixel,
|
|
|
|
|
gboolean source_alpha,
|
|
|
|
|
int destination_pixel,
|
|
|
|
|
gboolean destination_alpha,
|
|
|
|
|
int expected_result)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbuf *source_pixbuf;
|
|
|
|
|
GdkPixbuf *destination_pixbuf;
|
|
|
|
|
int result_pixel;
|
|
|
|
|
|
|
|
|
|
source_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, source_alpha, 8, 32, 32);
|
|
|
|
|
destination_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, destination_alpha, 8, 32, 32);
|
|
|
|
|
|
|
|
|
|
fill_with_pixel (source_pixbuf, source_pixel);
|
|
|
|
|
fill_with_pixel (destination_pixbuf, destination_pixel);
|
|
|
|
|
|
|
|
|
|
gdk_pixbuf_composite (source_pixbuf, destination_pixbuf,
|
|
|
|
|
0, 0, 32, 32, 0, 0, 1, 1, type, 0xFF);
|
|
|
|
|
|
|
|
|
|
result_pixel = load_pixel (gdk_pixbuf_get_pixels (destination_pixbuf)
|
|
|
|
|
+ 16 * gdk_pixbuf_get_rowstride (destination_pixbuf)
|
|
|
|
|
+ 16 * gdk_pixbuf_get_n_channels (destination_pixbuf),
|
|
|
|
|
destination_alpha);
|
|
|
|
|
|
Remove assorted G_OBJECT casts where unnecessary.
2001-12-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gdk-pixbuf-animation.c, gdk-pixbuf-loader.c, gdk-pixpuf.c,
io-gif-animation.c, io-gif.c, io-tiff.c, test-loaders.c: Remove
assorted G_OBJECT casts where unnecessary.
* gdk-pixbuf-loader.c: Call g_object_ref and g_object_unref
instead of gdk_pixbuf_animation_ref and gdk_pixbuf_animation_unref
resp.
* gdk-pixbuf-csource.c, io-bmp.c, io-gif-animation.c, io-ico.c,
io-jpeg.c, io-png.c, io-pnm.c, io-ras.c, io-tga.c, io-wbmp.c,
io-xbm.c, io-xpm.c, test-gdk-pixbuf.c: Dito for gdk_pixbuf_ref and
gdk_pixbuf_unref.
* Makefile.am, pixops/Makefile.am: Compile everything with
-DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED
* gdk-pixdata.c: Use g_ascii_strup() instead of g_strup().
* io-xpm.c: Use g_ascii_strcasecmp() instead of g_strcasecmp().
* demos/testpixbuf-drawable.c, demos/testpixbuf-save.c,
demos/testpixbuf-scale.c, demos/testpixbuf.c: Call g_object_ref
and g_object_unref instead of gdk_pixbuf_ref and gdk_pixbuf_unref
resp.
2001-12-13 21:22:12 +00:00
|
|
|
|
g_object_unref (source_pixbuf);
|
|
|
|
|
g_object_unref (destination_pixbuf);
|
2000-05-04 14:53:48 +00:00
|
|
|
|
|
|
|
|
|
if (result_pixel != expected_result) {
|
|
|
|
|
char *interpolation_type, *source_string, *destination_string, *result_string, *expected_string;
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case GDK_INTERP_NEAREST: interpolation_type = "GDK_INTERP_NEAREST"; break;
|
|
|
|
|
case GDK_INTERP_TILES: interpolation_type = "GDK_INTERP_TILES"; break;
|
|
|
|
|
case GDK_INTERP_BILINEAR: interpolation_type = "GDK_INTERP_BILINEAR"; break;
|
|
|
|
|
case GDK_INTERP_HYPER: interpolation_type = "GDK_INTERP_HYPER"; break;
|
|
|
|
|
default: interpolation_type = "???";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (source_alpha) {
|
|
|
|
|
source_string = g_strdup_printf ("0x%08X", source_pixel);
|
|
|
|
|
} else {
|
|
|
|
|
source_string = g_strdup_printf ("0x%06X", source_pixel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (destination_alpha) {
|
|
|
|
|
destination_string = g_strdup_printf ("0x%08X", destination_pixel);
|
|
|
|
|
result_string = g_strdup_printf ("0x%08X", result_pixel);
|
|
|
|
|
expected_string = g_strdup_printf ("0x%08X", expected_result);
|
|
|
|
|
} else {
|
|
|
|
|
destination_string = g_strdup_printf ("0x%06X", destination_pixel);
|
|
|
|
|
result_string = g_strdup_printf ("0x%06X", result_pixel);
|
|
|
|
|
expected_string = g_strdup_printf ("0x%06X", expected_result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_message ("simple_composite_test (%s): composite %s on top of %s, expected %s, got %s",
|
|
|
|
|
interpolation_type,
|
|
|
|
|
source_string, destination_string, expected_string, result_string);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
simple_composite_test_one_type (GdkInterpType type)
|
|
|
|
|
{
|
|
|
|
|
gboolean success;
|
|
|
|
|
|
|
|
|
|
success = TRUE;
|
|
|
|
|
|
|
|
|
|
/* There are only a few trivial cases in here.
|
|
|
|
|
* But these were enough to expose the problems in the old composite code.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Non-alpha into non-alpha. */
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x000000, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0xFFFFFF, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFF0000, FALSE, 0x000000, FALSE, 0xFF0000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00, FALSE, 0x000000, FALSE, 0x00FF00);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000FF, FALSE, 0x000000, FALSE, 0x0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0xFF0000, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x00FF00, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x0000FF, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00, FALSE, 0xFFFFFF, FALSE, 0x00FF00);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFFFFFF, FALSE, 0xFFFFFF, FALSE, 0xFFFFFF);
|
|
|
|
|
|
|
|
|
|
/* Alpha into non-alpha. */
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x000000, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0xFFFFFF, FALSE, 0xFFFFFF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000007F, TRUE, 0xFFFFFF, FALSE, 0x808080);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000080, TRUE, 0xFFFFFF, FALSE, 0x7F7F7F);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000FF, TRUE, 0xFFFFFF, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000FF, TRUE, 0xFFFFFF, FALSE, 0x000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFF0000FF, TRUE, 0x000000, FALSE, 0xFF0000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00FF, TRUE, 0x000000, FALSE, 0x00FF00);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000FFFF, TRUE, 0x000000, FALSE, 0x0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0xFF0000, FALSE, 0xFF0000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x00FF00, FALSE, 0x00FF00);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x0000FF, FALSE, 0x0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF0080, TRUE, 0xFFFFFF, FALSE, 0x7FFF7F);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFFFFFFFF, TRUE, 0xFFFFFF, FALSE, 0xFFFFFF);
|
|
|
|
|
|
|
|
|
|
/* Non-alpha into alpha. */
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x00000000, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0xFFFFFFFF, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFF0000, FALSE, 0x00000000, TRUE, 0xFF0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00, FALSE, 0x00000000, TRUE, 0x00FF00FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000FF, FALSE, 0x00000000, TRUE, 0x0000FFFF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0xFF0000FF, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x00FF00FF, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000, FALSE, 0x0000FFFF, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00, FALSE, 0xFFFFFF00, TRUE, 0x00FF00FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFFFFFF, FALSE, 0xFFFFFFFF, TRUE, 0xFFFFFFFF);
|
|
|
|
|
|
|
|
|
|
/* Alpha into alpha. */
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x00000000, TRUE, 0x00000000);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0xFFFFFFFF, TRUE, 0xFFFFFFFF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000007F, TRUE, 0xFFFFFFFF, TRUE, 0x808080FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000080, TRUE, 0xFFFFFFFF, TRUE, 0x7F7F7FFF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x000000FF, TRUE, 0xFFFFFFFF, TRUE, 0x000000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFF0000FF, TRUE, 0x00000000, TRUE, 0xFF0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF00FF, TRUE, 0x00000000, TRUE, 0x00FF00FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x0000FFFF, TRUE, 0x00000000, TRUE, 0x0000FFFF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0xFF0000FF, TRUE, 0xFF0000FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x00FF00FF, TRUE, 0x00FF00FF);
|
|
|
|
|
success &= simple_composite_test_one (type, 0x00000000, TRUE, 0x0000FFFF, TRUE, 0x0000FFFF);
|
2000-05-05 02:50:24 +00:00
|
|
|
|
success &= simple_composite_test_one (type, 0x00FF0080, TRUE, 0xFFFFFF00, TRUE, 0x00FF0080);
|
|
|
|
|
success &= simple_composite_test_one (type, 0xFF000080, TRUE, 0x00FF0040, TRUE, 0xCC32009F);
|
2000-05-04 14:53:48 +00:00
|
|
|
|
success &= simple_composite_test_one (type, 0xFFFFFFFF, TRUE, 0xFFFFFFFF, TRUE, 0xFFFFFFFF);
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
simple_composite_test (void)
|
|
|
|
|
{
|
|
|
|
|
gboolean success;
|
|
|
|
|
|
|
|
|
|
success = TRUE;
|
|
|
|
|
|
|
|
|
|
success &= simple_composite_test_one_type (GDK_INTERP_NEAREST);
|
|
|
|
|
success &= simple_composite_test_one_type (GDK_INTERP_TILES);
|
|
|
|
|
success &= simple_composite_test_one_type (GDK_INTERP_BILINEAR);
|
|
|
|
|
success &= simple_composite_test_one_type (GDK_INTERP_HYPER);
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 23:57:25 +00:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv)
|
|
|
|
|
{
|
2000-05-04 14:53:48 +00:00
|
|
|
|
int result;
|
2000-06-22 15:36:12 +00:00
|
|
|
|
|
2000-05-04 14:53:48 +00:00
|
|
|
|
result = EXIT_SUCCESS;
|
2001-02-19 14:35:25 +00:00
|
|
|
|
|
2001-06-29 02:53:01 +00:00
|
|
|
|
g_type_init ();
|
2000-06-22 15:36:12 +00:00
|
|
|
|
|
2000-05-04 14:53:48 +00:00
|
|
|
|
/* Run some tests. */
|
|
|
|
|
if (!simple_composite_test ()) {
|
|
|
|
|
result = EXIT_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
1999-12-02 23:57:25 +00:00
|
|
|
|
}
|