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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
|
use strict;
use warnings;
use Gtk2::TestHelper tests => 103, noinit => 1;
my $show = 0;
my $gif = 'gtk-demo/floppybuddy.gif';
SKIP: {
skip 'animation not found', 12
unless -r $gif;
my $ani = Gtk2::Gdk::PixbufAnimation -> new_from_file($gif);
isa_ok ($ani, 'Gtk2::Gdk::PixbufAnimation');
like ($ani->get_width, qr/^\d+$/);
like ($ani->get_height, qr/^\d+$/);
my $iter = $ani->get_iter;
isa_ok ($iter, 'Gtk2::Gdk::PixbufAnimationIter');
$iter = $ani->get_iter (0, 0);
isa_ok ($iter, 'Gtk2::Gdk::PixbufAnimationIter');
ok (!$ani->is_static_image);
isa_ok($ani->get_static_image, 'Gtk2::Gdk::Pixbuf');
# The next two seem to return TRUE on m68k but FALSE everywhere else, so
# just test for definedness.
# http://buildd.debian.org/fetch.php?&pkg=libgtk2-perl&ver=1%3A1.121-1&arch=m68k&stamp=1151330512&file=log&as=raw
ok (defined $iter->advance);
ok (defined $iter->advance (0, 0));
like ($iter->get_delay_time, qr/^\d+$/);
ok (!$iter->on_currently_loading_frame);
isa_ok ($iter->get_pixbuf, 'Gtk2::Gdk::Pixbuf');
}
eval {
Gtk2::Gdk::PixbufAnimation -> new_from_file("aslkhaklh.gif");
};
isa_ok ($@, "Glib::File::Error");
my ($pixbuf, $pixels);
$pixbuf = Gtk2::Gdk::Pixbuf->new ('rgb', TRUE, 8, 61, 33);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new with alpha');
is ($pixbuf->get_colorspace, 'rgb');
is ($pixbuf->get_n_channels, 4);
ok ($pixbuf->get_has_alpha);
is ($pixbuf->get_bits_per_sample, 8);
is ($pixbuf->get_width, 61);
is ($pixbuf->get_height, 33);
is ($pixbuf->get_rowstride, 244);
$pixels = $pixbuf->get_pixels;
ok ($pixels);
is (length($pixels), ($pixbuf->get_height * $pixbuf->get_rowstride));
$pixbuf = Gtk2::Gdk::Pixbuf->new ('rgb', FALSE, 8, 33, 61);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new without alpha');
is ($pixbuf->get_colorspace, 'rgb');
is ($pixbuf->get_n_channels, 3);
ok (!$pixbuf->get_has_alpha);
is ($pixbuf->get_bits_per_sample, 8);
is ($pixbuf->get_width, 33);
is ($pixbuf->get_height, 61);
is ($pixbuf->get_rowstride, 100); # 100 is aligned, 99 is actual
$pixels = $pixbuf->get_pixels;
ok ($pixels);
is (length($pixels), ($pixbuf->get_height * $pixbuf->get_rowstride));
isa_ok ($pixbuf->copy, 'Gtk2::Gdk::Pixbuf', 'copy');
my $subpixbuf = $pixbuf->new_subpixbuf (10, 5, 7, 14);
isa_ok ($subpixbuf, 'Gtk2::Gdk::Pixbuf', 'new_subpixbuf');
# probably more validation of gdk-pixbuf's stuff, but it makes me happy
# to verify invariants like this.
is ($subpixbuf->get_width, 7);
is ($subpixbuf->get_height, 14);
is ($subpixbuf->get_rowstride, $pixbuf->get_rowstride);
my ($win, $vbox);
if ($show) {
$win = Gtk2::Window->new;
$vbox = Gtk2::VBox->new;
$win->add ($vbox);
}
my @test_xpm = (
'4 5 3 1',
' c None',
'. c red',
'+ c blue',
'.. +',
'. ++',
' ++.',
'++..',
'+.. ');
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_xpm_data (@test_xpm);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_xpm_data');
is ($pixbuf->get_width, 4);
is ($pixbuf->get_height, 5);
ok ($pixbuf->get_has_alpha);
$vbox->add (Gtk2::Image->new_from_pixbuf ($pixbuf)) if $show;
#
# Don't crash if we get partial data. Eat the any warnings from GdkPixbuf
# to avoid scary messages on stderr from the test suite.
#
my $log = Glib::Log->set_handler ('GdkPixbuf', ['warning'], sub {print "@_\n"});
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_xpm_data (@test_xpm[0..2]);
ok (! defined ($pixbuf), "Don't crash on broken pixmap data");
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_xpm_data (@test_xpm[0..5]);
ok (defined $pixbuf, "Don't crash on partial pixmap data");
Glib::Log->remove_handler ('GdkPixbuf', $log);
# raw pixel values to make the xpm above
my $rawdata = pack 'C*',
255,0,0,255, 255,0,0,255, 0,0,0,0, 0,0,255,255,
255,0,0,255, 0,0,0,0, 0,0,255,255, 0,0,255,255,
0,0,0,0, 0,0,255,255, 0,0,255,255, 255,0,0,255,
0,0,255,255, 0,0,255,255, 255,0,0,255, 255,0,0,255,
0,0,255,255, 255,0,0,255, 255,0,0,255, 0,0,0,0,
;
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_data ($rawdata, 'rgb', TRUE, 8, 4, 5, 16);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_data');
is ($pixbuf->get_colorspace, 'rgb');
ok ($pixbuf->get_has_alpha);
is ($pixbuf->get_width, 4);
is ($pixbuf->get_height, 5);
is ($pixbuf->get_rowstride, 16);
$vbox->add (Gtk2::Image->new_from_pixbuf ($pixbuf)) if $show;
# inlined data from gdk-pixbuf-csource, run on the xpm from above
my $inlinedata =
"GdkP" # Pixbuf magic (0x47646b50)
. "\0\0\0[" # length: header (24) + pixel_data (67)
. "\2\1\0\2" # pixdata_type (0x2010002)
. "\0\0\0\20" # rowstride (16)
. "\0\0\0\4" # width (4)
. "\0\0\0\5" # height (5)
# pixel_data:
. "\202\377\0\0\377\4\0\0\0\0\0\0\377\377\377\0\0\377\0\0\0\0\202\0\0\377"
. "\377\1\0\0\0\0\202\0\0\377\377\1\377\0\0\377\202\0\0\377\377\202\377"
. "\0\0\377\1\0\0\377\377\202\377\0\0\377\1\0\0\0\0";
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_inline ($inlinedata, TRUE);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_inline');
is ($pixbuf->get_colorspace, 'rgb');
ok ($pixbuf->get_has_alpha);
is ($pixbuf->get_width, 4);
is ($pixbuf->get_height, 5);
is ($pixbuf->get_rowstride, 16);
$vbox->add (Gtk2::Image->new_from_pixbuf ($pixbuf)) if $show;
#
# these functions can throw Gtk2::Gdk::Pixbuf::Error and Glib::File::Error
# exceptions.
#
my $filename = 'testsave.jpg';
$pixbuf->save ($filename, 'jpeg', quality => 75.0);
ok (1);
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_file ($filename);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_file');
SKIP: {
skip "new_from_file_at_size is new in 2.4", 3
unless Gtk2->CHECK_VERSION(2,4,0);
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_file_at_size ($filename, 20, 25);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_file_at_size');
is ($pixbuf->get_width, 20);
is ($pixbuf->get_height, 25);
}
SKIP: {
skip "new_from_file_at_scale is new in 2.6", 3
unless Gtk2->CHECK_VERSION(2,6,0);
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_file_at_scale ($filename, 20, 25, FALSE);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_file_at_scale');
is ($pixbuf->get_width, 20);
is ($pixbuf->get_height, 25);
}
SKIP: {
skip "new stuff", 3
unless Gtk2->CHECK_VERSION (2,6,0);
my ($format, $width, $height) = Gtk2::Gdk::Pixbuf->get_file_info ($filename);
isa_ok ($format, "Gtk2::Gdk::PixbufFormat");
is ($width, 4);
is ($height, 5);
}
unlink $filename;
$filename = 'testsave.png';
my $mtime = scalar localtime;
my $desc = 'Something really cool';
$pixbuf->save ($filename, 'png',
'tEXt::Thumb::MTime' => $mtime,
'tEXt::Description' => $desc);
ok (1);
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_file ($filename);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_file');
is ($pixbuf->get_option ('tEXt::Description'), $desc, 'get_option works');
is ($pixbuf->get_option ('tEXt::Thumb::MTime'), $mtime, 'get_option works');
ok (! $pixbuf->get_option ('tEXt::noneXIStenTTag'),
'get_option returns undef if the key is not found');
unlink $filename;
# raw pixel values to make the xpm above, but with green for the
# transparent pixels, so we can use add_alpha.
$rawdata = pack 'C*',
255,0,0, 255,0,0, 0,255,0, 0,0,255,
255,0,0, 0,255,0, 0,0,255, 0,0,255,
0,255,0, 0,0,255, 0,0,255, 255,0,0,
0,0,255, 0,0,255, 255,0,0, 255,0,0,
0,0,255, 255,0,0, 255,0,0, 0,255,0,
;
$pixbuf = Gtk2::Gdk::Pixbuf->new_from_data ($rawdata, 'rgb', FALSE, 8, 4, 5, 12);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'new_from_data');
ok (!$pixbuf->get_has_alpha);
is ($pixbuf->get_rowstride, 12);
$vbox->add (Gtk2::Image->new_from_pixbuf ($pixbuf)) if $show;
my $pixbuf2 = $pixbuf->add_alpha (TRUE, 0, 255, 0);
isa_ok ($pixbuf2, 'Gtk2::Gdk::Pixbuf', 'add_alpha');
ok ($pixbuf2->get_has_alpha);
$vbox->add (Gtk2::Image->new_from_pixbuf ($pixbuf2)) if $show;
$pixbuf->copy_area (2, 3,
$pixbuf2->get_width - 2,
$pixbuf2->get_height - 3,
$pixbuf2, 0, 2);
$pixbuf2->saturate_and_pixelate ($pixbuf2, 0.75, FALSE);
sub pack_rgba {
use integer;
return (($_[0] << 0) | ($_[1] << 8) | ($_[2] << 16) | ($_[3] << 24));
}
$pixbuf->fill (pack_rgba (255, 127, 96, 196));
SKIP: {
skip "new 2.6 stuff", 2
unless Gtk2->CHECK_VERSION (2, 6, 0);
isa_ok ($pixbuf->flip (TRUE), "Gtk2::Gdk::Pixbuf");
isa_ok ($pixbuf->rotate_simple ("clockwise"), "Gtk2::Gdk::Pixbuf");
}
$pixbuf = Gtk2::Gdk::Pixbuf->new ('rgb', TRUE, 8, 32, 32);
$pixbuf2->scale ($pixbuf, 0, 0, 10, 15, 1, 2, 1.2, 3.5, 'bilinear');
$pixbuf2->composite ($pixbuf, # dest
10, 5, # dest x & y
4, 5, # dest width & height
0, 0, # offsets
2.0, 4.0, # x & y scale factors
'nearest', # interp type
0.4); # overall alpha
$pixbuf2->composite_color ($pixbuf, # dest
10, 5, # dest x & y
4, 5, # dest width & height
0, 0, # offsets
2.0, 4.0, # x & y scale factors
'nearest', # interp type
0.4, # overall alpha
3, 4, # check x & y
5, # check size
pack_rgba (75, 75, 75, 255), # color 1
pack_rgba (192, 192, 192, 255)); # color 2
$pixbuf = $pixbuf2->scale_simple (24, 25, 'tiles');
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'scale_simple');
$pixbuf = $pixbuf2->composite_color_simple (24, 25, 'hyper', 0.4,
5, # check size
pack_rgba (75, 75, 75, 255), # color 1
pack_rgba (192, 192, 192, 255)); # color 2
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'composite_color_simple');
SKIP: {
skip "GdkPixbufFormat stuff is new in 2.2.0", 12
unless Gtk2->CHECK_VERSION (2,2,0);
my @formats = Gtk2::Gdk::Pixbuf->get_formats;
ok (scalar (@formats), "got a list back");
is (ref $formats[0], 'Gtk2::Gdk::PixbufFormat', "list of formats");
ok (exists $formats[0]{name}, "contains key 'name'");
ok (exists $formats[0]{description}, "contains key 'description'");
ok (exists $formats[0]{mime_types}, "contains key 'mime_types'");
is (ref $formats[0]{mime_types}, 'ARRAY', "'mime_types' is a list");
ok (exists $formats[0]{extensions}, "contains key 'extensions'");
is (ref $formats[0]{extensions}, 'ARRAY', "'extensions' is a list");
SKIP: {
skip "new format stuff", 4
unless Gtk2->CHECK_VERSION (2,6,0);
ok (exists $formats[0]{is_scalable});
ok (exists $formats[0]{is_disabled});
ok (exists $formats[0]{license});
$formats[0]->set_disabled (TRUE);
@formats = Gtk2::Gdk::Pixbuf->get_formats;
is ($formats[0]->{is_disabled}, TRUE);
}
}
if ($show) {
$win->show_all;
$win->signal_connect (delete_event => sub {Gtk2->main_quit});
Gtk2->main;
}
SKIP: {
skip "can't test display-related stuff without a display", 7
unless Gtk2->init_check;
my $window = Gtk2::Gdk::Window->new (undef, {
width => 100,
height => 50,
wclass => 'output',
window_type => 'toplevel',
});
my $pixmap = Gtk2::Gdk::Pixmap->new ($window, 100, 50, -1);
my $bitmap = Gtk2::Gdk::Pixmap->new ($window, 100, 50, 1);
my $gc = Gtk2::Gdk::GC->new ($pixmap);
$pixbuf = Gtk2::Gdk::Pixbuf->new ('rgb', FALSE, 8, 100, 50);
$pixbuf->render_threshold_alpha ($bitmap, 0, 0, 0, 0,
$bitmap->get_size,
0.75);
$pixbuf->render_to_drawable ($pixmap, $gc, 0, 0, 50, 20,
$pixmap->get_size, 'normal', 1, 3);
$pixbuf->render_to_drawable_alpha ($pixmap, 0, 0, 0, 0,
$pixmap->get_size, 'bilevel', 0.75,
'normal', 1, 0);
my $colormap = $pixmap->get_colormap;
$pixbuf = $pixbuf->add_alpha (FALSE, 0, 0, 0);
($pixmap, $bitmap) =
$pixbuf->render_pixmap_and_mask_for_colormap ($colormap, 0.75);
isa_ok ($pixmap, 'Gtk2::Gdk::Pixmap');
isa_ok ($bitmap, 'Gtk2::Gdk::Bitmap');
# context sensitive, make sure we get the right thing back
$pixmap = $pixbuf->render_pixmap_and_mask_for_colormap ($colormap, 0.75);
isa_ok ($pixmap, 'Gtk2::Gdk::Pixmap');
($pixmap, $bitmap) = $pixbuf->render_pixmap_and_mask (0.75);
isa_ok ($pixmap, 'Gtk2::Gdk::Pixmap');
isa_ok ($bitmap, 'Gtk2::Gdk::Bitmap');
# context sensitive, make sure we get the right thing back
$pixmap = $pixbuf->render_pixmap_and_mask (0.75);
isa_ok ($pixmap, 'Gtk2::Gdk::Pixmap');
## FIXME create a GdkImage somehow
#$pixbuf = Gtk2::Gdk::Pixbuf->get_from_image ($src, $cmap, $src_x, $src_y, $dest_x, $dest_y, $width, $height)
#$pixbuf = $pixbuf->get_from_image ($src, $cmap, $src_x, $src_y, $dest_x, $dest_y, $width, $height)
$pixbuf = Gtk2::Gdk::Pixbuf->get_from_drawable
($pixmap, undef, 0, 0, 0, 0, $pixmap->get_size);
isa_ok ($pixbuf, 'Gtk2::Gdk::Pixbuf', 'get_from_drawable');
$pixbuf->get_from_drawable
($pixmap, undef, 0, 0, 0, 0, $pixmap->get_size);
}
SKIP: {
skip "save_to_buffer was introduced in 2.4", 3
unless Gtk2->CHECK_VERSION (2, 4, 0);
my ($width, $height) = (45, 89);
my $data = pack "C*", map { int rand 255 } 0..(3*$width*$height);
my $pixbuf = Gtk2::Gdk::Pixbuf->new_from_data
($data, 'rgb', FALSE, 8, $width, $height, $width*3);
my $buffer = $pixbuf->save_to_buffer ('jpeg', quality => 0.75);
ok ($buffer, 'save_to_buffer');
my $loader = Gtk2::Gdk::PixbufLoader->new;
$loader->write ($buffer);
$loader->close;
$pixbuf = $loader->get_pixbuf;
is ($pixbuf->get_width, $width);
is ($pixbuf->get_height, $height);
}
SKIP: {
skip 'new 2.12 stuff', 0
unless Gtk2->CHECK_VERSION (2, 12, 0);
$pixbuf->apply_embedded_orientation;
}
# vim: set ft=perl :
|