Jump to content

Want to know how to do this


Rosst

Recommended Posts

Create php file to create your image EG
::myimage.php::
[code]
<?php
    // create image
$im = imagecreate(64,64);
    // define colors
$bg = imagecolorallocate($im, 0x00, 0x00, 0xFF);
$circ = imagecolorallocate($im, 0xFF, 0xFF, 0x00);
    // draw image
imagefilledellipse($im, 32,32,48,48,$circ);
    // output image
header('content-type: image/png');
imagepng($im);
    // free image from memory
imagedestroy($im);   
?>
[/code]

and in the page where you want the image
[code]
<img src='myimage.php'>
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.