Leser: 1
5 Einträge, 1 Seite |
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
use strict;
use warnings;
use Tk::JPEG;
use Tk;
use File::Basename;
####Verzeichnis Get
my $kill = basename $0;
$_ = "$0";
s/$kill//g;
my $verz = "$_";
####pics
my $pic1 = "me.jpg";
my $mw = MainWindow->new();
my $pic =$mw->Frame();
#mal dreist kopiert ^^ ausem tutorial (vergebung bitte)
my $say = $pic->Canvas()->pack();
$say->createLine( 25, 175, 325, 175,
-arrow => 'last',
);
$say->createText( 15, 175,
-fill => 'blue',
-text => 'X',
);
$say->createLine(175, 325, 175, 25,
-arrow => 'last',
);
$say->createText(175, 15,
-fill => 'red',
-text => 'Y',
);
my $datei = "$verz$pic1";
my $photo = $pic->Photo(-file => "$datei");
$pic->Label(-image => $photo)->pack();
$pic->pack();
MainLoop;
5 Einträge, 1 Seite |