Leser: 1
7 Einträge, 1 Seite |
$hlist->itemCget($path, $column, -text);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
for my $fn (glob ("\"$programmpfad/images/1/*.jpg\"")) {
my $SrcImg=$mw->Photo(-file => $fn);
my $DstImg=$mw->Photo();
my $w=$SrcImg->width();
my $h=$SrcImg->height();
my $f=int($h/200);
$DstImg->copy($SrcImg, -subsample => ($f, $f)); # rescales image to one size
$i++;
push @ImgArr, $DstImg;
print "$i:$fn:$w $h\n";
$SrcImg->delete();
my $e=$first_pdf->addchild("", -data => $fn,);
$first_pdf->itemCreate($e, 0,
-itemtype => "imagetext",
-image => $DstImg,
-text => $fn,
-style => $TextOver,
);
}
Quotemusst du mal probieren oder auf ptk warten! :)
my $e=$first_pdf->addchild("", -data => $fn,);
$hlist->info("children")
7 Einträge, 1 Seite |