in reply to insert picture into word with win32::ole
$doc->Paragraphs->Add; my $lastpara=$doc->Paragraphs->Count; my $para = $doc->Paragraphs($lastpara); my $ran = $para->Range; $ran->{Start} = $ran->{End}; my $pict = $ran->InlineShapes->AddPicture({FileName=>"$fn", LinkTo +File=>$f});
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: insert picture into word with win32::ole
by stakeholder (Initiate) on Aug 17, 2007 at 05:30 UTC |