philaphi Posted August 12, 2006 Share Posted August 12, 2006 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,<?phpheader("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" );?> Link to comment https://forums.phpfreaks.com/topic/17325-easy-question/ Share on other sites More sharing options...
Guest huey4657 Posted August 12, 2006 Share Posted August 12, 2006 I think the basic framework goes like this.<?php your php ?><html><head><title>title goes here</title></head><body><p><img src="Test.png" alt = "test image" width = "400" height = "400"></p></body></html> Link to comment https://forums.phpfreaks.com/topic/17325-easy-question/#findComment-73634 Share on other sites More sharing options...
Orio Posted August 12, 2006 Share Posted August 12, 2006 @huey- that's wrong.You need to save the code above in a file, let's pic.php.Then when you want to show, add to the html:<img src="pic.php">Orio. Link to comment https://forums.phpfreaks.com/topic/17325-easy-question/#findComment-73648 Share on other sites More sharing options...
Guest huey4657 Posted August 12, 2006 Share Posted August 12, 2006 Sorry, I thought php code created an image file called test.png Link to comment https://forums.phpfreaks.com/topic/17325-easy-question/#findComment-73652 Share on other sites More sharing options...
Chetan Posted August 12, 2006 Share Posted August 12, 2006 It does Link to comment https://forums.phpfreaks.com/topic/17325-easy-question/#findComment-73687 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.