download pngcreate.php
Language: PHP
LOC: 9
Project Info
rcbjpoc - Open Definition Proof Of Concept...itory(rcbjpoc)
Server: Google
Type: svn
...r\rcbjpoc\trunk\php4\other\
   pngcreate.php

<?php
    /**
     * @author Roger C.B. Johnsen
     * @date 12.02.2007
     *
     * This is a demonstration on how to create png's
     */

     // Creating a new image
     $image = imagecreate(1024,768); // imagecreate(x,y);

     // Setting color basis/canvas
     $mygrey = imagecolorallocate($image,204,204,204); // imagecolorallocate(resourceimage,int red,int green,int blue);
     $myblack = imagecolorallocate($image,0,0,0); // imagecolorallocate(resourceimage,int red,int green,int blue);
     
     // Drawing a line
     imageline($image,15,35,120,60,$myblack);

     header("Content-type: image/png");
     imagepng($image);
     imagedestroy($image);
?>

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us