summaryrefslogtreecommitdiff
path: root/test/unittest_images.cxx
blob: 25dfdd2cf78a88a462dd01a22dd4eef8317a4a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
//
// "$Id$"
//
// Unit tests for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2010 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library 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
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems on the following page:
//
//     http://www.fltk.org/str.php
//

#include <FL/Fl_Box.H>
#include <FL/fl_draw.H>

// Note: currently (March 2010) fl_draw_image() supports transparency with
//	 alpha channel only on Apple (Mac OS X), but Fl_RGB_Image->draw()
//	 supports transparency on all platforms !

//
//------- test the image drawing capabilities of this implementation ----------
//
class ImageTest : public Fl_Box {
public: 
  static Fl_Widget *create() {
    int x, y;
    uchar *dg, *dga, *drgb, *drgba;
    dg = img_gray = (uchar*)malloc(128*128*1);
    dga = img_gray_a = (uchar*)malloc(128*128*2);
    drgb = img_rgb = (uchar*)malloc(128*128*3);
    drgba = img_rgba = (uchar*)malloc(128*128*4);
    for (y=0; y<128; y++) {
      for (x=0; x<128; x++) {
        *drgba++ = *drgb++ = *dga++ = *dg++ = y<<1;
        *drgba++ = *drgb++                  = x<<1;
        *drgba++ = *drgb++                  = (127-x)<<1;
        *drgba++           = *dga++         = x+y;
      }
    }
    i_rgba = new Fl_RGB_Image (img_rgba,128,128,4);
    i_ga = new Fl_RGB_Image (img_gray_a,128,128,2);
    return new ImageTest(TESTAREA_X, TESTAREA_Y, TESTAREA_W, TESTAREA_H);
  }
  static uchar *img_gray;
  static uchar *img_gray_a;
  static uchar *img_rgb;
  static uchar *img_rgba;
  static Fl_RGB_Image *i_rgba;
  static Fl_RGB_Image *i_ga;
  ImageTest(int x, int y, int w, int h) : Fl_Box(x, y, w, h) {
    label("Testing Image Drawing\n\n"
	"This test renders four images, two of them with a checker board\n"
	"visible through the graphics. Color and gray gradients should be\n"
	"visible. This does not test any image formats such as JPEG.");
    align(FL_ALIGN_INSIDE|FL_ALIGN_BOTTOM|FL_ALIGN_LEFT|FL_ALIGN_WRAP);
    box(FL_BORDER_BOX);
  }
  void draw() {
    Fl_Box::draw();

    // top left: RGB

    int xx = x()+10, yy = y()+10;
    fl_color(FL_BLACK); fl_rect(xx, yy, 130, 130);
    fl_draw_image(img_rgb, xx+1, yy+1, 128, 128, 3);
    fl_draw("RGB", xx+134, yy+64);

    // bottom left: RGBA

    xx = x()+10; yy = y()+10+134;
    fl_color(FL_BLACK); fl_rectf(xx, yy, 130, 130);
    fl_color(FL_WHITE); fl_rectf(xx+1, yy+1, 64, 64);
    fl_color(FL_WHITE); fl_rectf(xx+65, yy+65, 64, 64);
#ifdef __APPLE__
    fl_draw_image(img_rgba, xx+1, yy+1, 128, 128, 4);	// Apple: okay w/alpha
#else
    i_rgba->draw(xx+1,yy+1);	// only Fl_RGB_Image->draw() works with alpha
#endif
    fl_color(FL_BLACK); fl_draw("RGBA", xx+134, yy+64);
    
    // top right: Gray

    xx = x()+10+200; yy = y()+10;
    fl_color(FL_BLACK); fl_rect(xx, yy, 130, 130);
    fl_draw_image(img_gray, xx+1, yy+1, 128, 128, 1);
    fl_draw("Gray", xx+134, yy+64);

    // bottom right: Gray+Alpha

    xx = x()+10+200; yy = y()+10+134;
    fl_color(FL_BLACK); fl_rectf(xx, yy, 130, 130);
    fl_color(FL_WHITE); fl_rectf(xx+1, yy+1, 64, 64);
    fl_color(FL_WHITE); fl_rectf(xx+65, yy+65, 64, 64);
#ifdef __APPLE__
    fl_draw_image(img_gray_a, xx+1, yy+1, 128, 128, 2);	// Apple: okay w/alpha
#else
    i_ga->draw(xx+1,yy+1);	// only Fl_RGB_Image->draw() works with alpha
#endif
    fl_color(FL_BLACK); fl_draw("Gray+Alpha", xx+134, yy+64);
  }
};

uchar *ImageTest::img_gray = 0;
uchar *ImageTest::img_gray_a = 0;
uchar *ImageTest::img_rgb = 0;
uchar *ImageTest::img_rgba = 0;
Fl_RGB_Image *ImageTest::i_rgba = 0;
Fl_RGB_Image *ImageTest::i_ga = 0;

UnitTest images("drawing images", ImageTest::create);

//
// End of "$Id$"
//