Jump to content

philaphi

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

philaphi's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi all, I want to read MS-WORD, EXCEL or PDF like files in PDF and get the all words. I'will make an index from these words. Is that possible in PHP. I don't know PHP very well. Which functions should i use ? thanks, Yigit
  2. I've following php code. It creates an image and saves in the filesystem. Now I want to show on browser. Do I need to write an html code for this or how can i do ?. thanks, <?php header("Content-type: image/png");  require_once("GraphicsEnvironment.php5"); $ge = new GraphicsEnvironment( 400, 400 ); $ge->addColor( "black", 0, 0, 0 ); $ge->addColor( "red", 255, 0, 0 ); $ge->addColor( "green", 0, 255, 0 ); $ge->addColor( "blue", 0, 0, 255 ); $gobjs = array(); $gobjs []= new Line( "black", 10, 5, 100, 200 ); $gobjs []= new Line( "blue", 200, 150, 390, 380 ); $gobjs []= new Line( "red", 60, 40, 10, 300 ); $gobjs []= new Line( "green", 5, 390, 390, 10 ); foreach( $gobjs as $gobj ) { $gobj->render( $ge ); } $ge->saveAsPng( "test.png" ); ?> 
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.