simplegraph.php

来自「php源码 php源码参考」· PHP 代码 · 共 21 行

PHP
21
字号
<?php
// set up image 
  $height = 200;
  $width = 200;
  $im = ImageCreateTrueColor($width, $height);
  $white = ImageColorAllocate ($im, 255, 255, 255);
  $blue = ImageColorAllocate ($im, 0, 0, 64);

// draw on image  
  ImageFill($im, 0, 0, $blue);
  ImageLine($im, 0, 0, $width, $height, $white);
  ImageString($im, 4, 50, 150, 'Sales', $white);

// output image
  Header ('Content-type: image/png');
  ImagePng ($im);
  
// clean up 
  ImageDestroy($im);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?