COM ppt

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rafael

    #1

    COM ppt

    I would like to create powerpoint file from php, and I have this php
    script i got from the internet...

    <?
    $powerpnt = new COM("powerpoint .application");
    $pres=$powerpnt->Presentation s->Add();
    $pres->Slides->Add(1,12);
    $pres->Slides->Add(2,10);
    $pres->Slides[1]->Shapes->AddTextbox(1,2 0,50,300,40);
    $pres->Slides[1]->Shapes->AddShape(94,10 0,200,300,300);
    $powerpnt->Presentation s[1]->SaveAs("D:\tes t.ppt");
    $powerpnt->quit();
    echo '<a href="test.ppt" >Download file as .ppt</a>';
    ?>

    I would like to add a Chart....I tried searching the internet seems i
    can't find anything...

    Can anybody help ?

    Thanx...

    Regards,
    Rafael

  • Csaba Gabor

    #2
    Re: COM ppt

    On Dec 22, 12:17 am, rafael <j.raf...@gmail .comwrote:
    I would like to create powerpoint file from php, and I have this php
    script i got from the internet...
    >
    <?
    $powerpnt = new COM("powerpoint .application");
    $pres=$powerpnt->Presentation s->Add();
    $pres->Slides->Add(1,12);
    $pres->Slides->Add(2,10);
    $pres->Slides[1]->Shapes->AddTextbox(1,2 0,50,300,40);
    $pres->Slides[1]->Shapes->AddShape(94,10 0,200,300,300);
    $powerpnt->Presentation s[1]->SaveAs("D:\tes t.ppt");
    $powerpnt->quit();
    echo '<a href="test.ppt" >Download file as .ppt</a>';
    ?>
    >
    I would like to add a Chart....I tried searching the internet seems i
    can't find anything...
    >
    Can anybody help ?
    >
    Thanx...
    >
    Regards,
    Rafael
    I searched in Google for: powerpoint charts add
    The following two links look useful:



    Csaba Gabor from Vancouver

    Comment

    Working...