Leser: 2
9 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
my $image = Image::Magick->new;
$image->Read('test.bmp');
@blobs = $image->ImageToBlob();
# Bild in Frame1
$bild= $mw->Photo();
$bild->configure("-data" => @blobs);
$label = $mw->Label(-image => $bild)->pack();
1
2
3
4
5
6
7
8
9
my $image = Image::Magick->new;
$image->Read('test.bmp');
@blobs = $image->ImageToBlob(magick => 'BMP');
# Bild in Frame1
$bild= $mw->Photo();
$bild->configure("-data" => @blobs, -format => 'BMP');
$label = $mw->Label(-image => $bild)->pack();
$bild->configure("-data" => @blobs, -format => 'BMP');
9 Einträge, 1 Seite |